Search found 3 matches
- Thu Mar 28, 2013 7:27 pm
- Forum: Challenges Solved
- Topic: countdown calc
- Replies: 20
- Views: 2981
#include <iostream> // integer length const unsigned int il(unsigned int AValue) { unsigned int c = 0; do { AValue /= 10; c++; } while(AValue); return c; } int calc(int num) { int num1 = 0; unsigned short int v[100]; for (int index1 = 0; index1 < num; ++index1) { v[index1] = il(index1); } for (int ...
- Thu Mar 28, 2013 3:09 pm
- Forum: Challenges Solved
- Topic: Cons Car
- Replies: 10
- Views: 1207
Same idea, but as Maxima expression:outsider wrote:I found this Algo:it means the same, but without bitoperationsCode: Select all
(x-((int) log2(x)))*2
Code: Select all
(x-2^truncate(log(x)/log(2)))*2
- Wed Aug 10, 2011 5:40 pm
- Forum: Challenges Solved
- Topic: Broken Key
- Replies: 12
- Views: 4198
Warning: Division by zero in /home/hacker_apache/html/hacker/html/hvm/hvmchallenge.php on line 88 17 test(s) passed '0<1<-0^0^*/4?1<p!0<p' is incorrect. Next input: 0<1<-0^1-26*?0^0^*/4?1<p!0<p Warning: Division by zero in /home/hacker_apache/html/hacker/html/hvm/hvmchallenge.php on line 88 'All te...