Search found 6 matches

by Hamstaro
Fri Jun 26, 2009 11:05 am
Forum: Challenges Solved
Topic: King Mouse
Replies: 23
Views: 2353

Here we go

First my solution looked like the one from sigi - but then i decided to add some fun to it:

Code: Select all

45*1-0^<1^0<2^:1+*>0^2?3c0<p!
by Hamstaro
Tue Jun 16, 2009 2:43 pm
Forum: Challenges Solved
Topic: Branches
Replies: 10
Views: 1373

I like the solution with the hash :P . This is how i found the solution: First I decompiled the whole thing and then recompiled it in c#. (just 4 fun) While running i took a look at the call stack. It showed that three functions are usign up all the cpu time. A closer look at those functions showed ...
by Hamstaro
Thu Jun 11, 2009 7:36 pm
Forum: Challenges Solved
Topic: Captcha
Replies: 14
Views: 1037

nice challenge

to solve this one i decided to use c# :? 1) first i calculated the rotation with linear regression and rotated every image into horizontal position. That was the easy part. No I had to figure out some method to compare all those images... 2) I only used the R(ed) value of the images. Here the import...
by Hamstaro
Tue Jun 09, 2009 12:19 pm
Forum: Challenges Solved
Topic: A Life Worth Living
Replies: 22
Views: 2470

Golly is your friend

10 000 000 000 cycles with hlife in golly - had the solution very quick - and u have also this nice gfx output 8)
by Hamstaro
Wed May 20, 2009 8:21 pm
Forum: Challenges Solved
Topic: Lazy Maze
Replies: 26
Views: 2074

maze image

Here is a picture how the maze looked like when i solved it. The red point is the exit. I just forgot to mark the start point.

Image
by Hamstaro
Tue Mar 24, 2009 1:38 pm
Forum: Challenges Solved
Topic: Deja Vu
Replies: 17
Views: 2094

Well, my first try was with quicksort. But i couldn't optimize it to bring results under 11000 cycles :roll:

I then used the solution with a hash table - without collision detection. We have here only 128 entries - so just be happy.