Search found 9 matches
- 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...
- 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
- 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
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
- 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...
- Thu Apr 26, 2012 8:01 pm
- Forum: Challenges Solved
- Topic: Breakout
- Replies: 35
- Views: 3219
- 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);
- 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 ...
- Sun Apr 15, 2012 1:41 pm
- Forum: The Hacker's Server
- Topic: Ranking
- Replies: 36
- Views: 101893
- Fri Apr 13, 2012 11:50 am
- Forum: Challenges
- Topic: Patience
- Replies: 27
- Views: 38697