Search found 9 matches

by wischi
Mon Jun 08, 2020 7:23 pm
Forum: Crossflip
Topic: Still works in 2020 :-)
Replies: 1
Views: 18442

Still works in 2020 :-)

A few years ago I gave a shot and tried a few levels by hand and thought about how to solve it programatically, but quickly lost interesst. Last weekend I gave it another shot and a few moments ago just reached 643. I solved it with a very straight forward gauss elimination and didn't optimize it ve...
by wischi
Wed Aug 09, 2017 3:46 pm
Forum: Challenges
Topic: Labyrinth
Replies: 5
Views: 15169

Is the challenge still working?

Got the following error message

Code: Select all

Fatal error: Cannot redeclare buildMaze() (previously declared in /home/hacker_apache/html/hacker/html/challenge/misc/hvmmaze.php:32) in /home/hacker_apache/html/hacker/html/challenge/misc/hvmmaze.php on line 32
by wischi
Fri Aug 23, 2013 12:35 pm
Forum: Challenges Solved
Topic: Twisted Zebras
Replies: 16
Views: 1376

I think the challenge should be upgraded to 2013 ;-) QR Codes are quite popular today.
Solution in few seconds

1. http://zxing.org/w/decode.jspx
2. insert url: http://www.hacker.org/challenge/img/codemi7.png
3. copy + paste
by wischi
Fri Aug 23, 2013 11:23 am
Forum: Challenges Solved
Topic: Exclusive Or
Replies: 24
Views: 4470

I wrote a little hvm-compiler (quick and dirty, at the moment only basic features) which support some inline functions (like mod) and calculates the jumps ;-) My MetaHVM_0.0.1 Code ##MetaHVM_0.0.1 #x = M0 (initialized) #y = M1 (initialized) #s = M2 #r = M3 12> #s=1 03> #r=0 [:begin_while] 0<1<+[!end...
by wischi
Thu Apr 26, 2012 8:01 pm
Forum: Challenges Solved
Topic: Breakout
Replies: 35
Views: 3219

- decompiled
- got bored
- coded a bot which supported me playing the game (full automatic and semiautomatic mode :-) )
took me some time but was fun.
by wischi
Sun Apr 22, 2012 3:14 pm
Forum: Challenges Solved
Topic: Growing Bacteria
Replies: 24
Views: 2885

Code: Select all

ulong[] Status = new ulong[4];int day = 1;Status[0] = 1;
do{
    for (int i = 3; i > 0; i--)Status[i] = Status[i - 1];
    Status[0] = Status[1]+Status[2];day++;
} while ((Status[0] + Status[1] + Status[2] + Status[3]) <= 1000000000000);
Debug.Write(day);
success ;-)
by wischi
Fri Apr 20, 2012 8:17 pm
Forum: Challenges Solved
Topic: Anybody Out There?
Replies: 10
Views: 1246

my solution :-) 1.) analyse the terms by hand. 2.) found some exceptions 3.) tried to analyse the server-side algorithm and entered some Letters :-) --> Warning: imagecolorat() expects parameter 2 to be long, string given in /home/hacker_apache/html/hacker/html/challenge/misc/twonumbers.php on line ...
by wischi
Sun Apr 15, 2012 1:41 pm
Forum: The Hacker's Server
Topic: Ranking
Replies: 36
Views: 101893

is there a bug in the ranking system? challenges: 92, pusherboy lvl 55 -> rank: -
?
what am i doing wrong?
by wischi
Fri Apr 13, 2012 11:50 am
Forum: Challenges
Topic: Patience
Replies: 27
Views: 38697

need some help :-)

after some math-hacks i figured out the rnd-number which passes the while-condition, but submit the answer ends in 'incorrect' :-( FUUUU

am i wrong? thx in advance