<?php $MAX_POWER_BITMASK = 32; $candidates = array_map( function ($power) { return pow(2, $power); }, range(0, $MAX_POWER_BITMASK) ); var_dump($candidates);
You have javascript disabled. You will not be able to edit any code.