|  | 
|  | 
| back to board | Test 6 Posted by Shorekh  20 Oct 2016 22:48What is a test 6?Re: Test 6 Whoever gets Wrong Answer at 6th test, try to change your way of finding the power of two.
 My solution got WA#6 when I calculated power of two this way:
 power = ceil(log(x)/log(2));
 
 Better calculate it by multiplying it.
 | 
 | 
|