Search found 5 matches

by man
Mon Sep 10, 2012 7:34 pm
Forum: Mortal Coil
Topic: languages & levels
Replies: 3
Views: 22762

I'm using Scala, too.
by man
Thu Apr 19, 2012 6:54 pm
Forum: Mortal Coil
Topic: Mortal Coil is dead?
Replies: 12
Views: 38781

adum wrote:i will fix it soon
Thanks, adum!

Can you say an approximate date? Like next week/next month?
by man
Tue Mar 06, 2012 6:57 pm
Forum: Mortal Coil
Topic: Its broken!
Replies: 16
Views: 51919

Still doesn't work for me...

Would be nice to see this fixed soon.
by man
Fri Oct 01, 2010 10:45 pm
Forum: Challenges Solved
Topic: Not Smaller Yet
Replies: 11
Views: 668

'Not smaller yet' immediately reminded me of BWT.
I know that because I read some articles about compression some time ago.

It seems that you can only solve this one if you already knew something about bz2.
Very easy for us, but very hard for the others.
by man
Thu Apr 23, 2009 2:11 pm
Forum: Challenges Solved
Topic: Black Box
Replies: 13
Views: 994

#include <iostream> int main() { int out = 230392619; // 1. bruteforce /*for( int i = 0; ; ++i ) { int edx = i; edx -= 0x6FE5D5; edx ^= 0x2EB22189; edx *= 0x1534162; edx ^= 0x69F6BC7; if( edx == out ) { std::cout << i << std::endl; break; } }*/ // 2. inversion int x, edx = out; edx ^= 0x69F6BC7; //...