Search found 11 matches

by matter
Mon Dec 14, 2009 4:31 am
Forum: Challenges
Topic: Primal Pi
Replies: 33
Views: 46484

HINT: Every composite number can be written as the product of prime factors. Sequence: consecutive digits in the first 2048 decimal places of pi So, if you have a list of the first 100,000 prime numbers, you can 'test' each of the sequences, and whether one of those prime numbers is a factor of it. ...
by matter
Thu Nov 26, 2009 5:01 am
Forum: Challenges
Topic: Your Turn, Part Two
Replies: 48
Views: 59141

Just a note, the script is CASE SENSITIVE for the URL you pass it. If your script is called "yourTurn.php", the Hacker.org server will convert it to lower case and request "yourturn.php". So, keep your script names in lower case.
by matter
Tue Nov 24, 2009 2:37 am
Forum: Challenges
Topic: Lazy Maze
Replies: 30
Views: 48625

For those wondering, it takes 100-200 steps to solve this maze. Consider that before doing it by hand.
by matter
Tue Nov 24, 2009 2:35 am
Forum: Challenges Solved
Topic: Lazy Maze
Replies: 26
Views: 3067

Hi, I solved the maze manually with some support of pen and paper. That way I chose because the server didn't answer correctly on my requests. I used PHP with fsockopen(..). I included cookies, referer, user-agent, accept-encoding and all the headerlines firefox uses too. But instead of "keep ...
by matter
Mon Nov 23, 2009 4:01 am
Forum: Challenges Solved
Topic: One Minute Man
Replies: 39
Views: 10714

I did mine with PHP...first time it ran, I forgot to output the answer... So all I got was "1:56pm Found the ANSWER!" (GMT+10)

Didn't make that mistake again...
by matter
Fri Nov 20, 2009 5:55 am
Forum: Challenges Solved
Topic: countdown calc
Replies: 20
Views: 2981

Ahhh! That took forever (2-3 hours)

Used first 20-30 factors to work out the formula =(k-1)^5*21+k^3*5*k*MAX(0, k-10)
where k = 100-(time left)

Then used Excel to work out the binary crap along with http://www.subnetonline.com/pages/conve ... to-dec.php
by matter
Wed Nov 18, 2009 8:05 am
Forum: Challenges Solved
Topic: Basic
Replies: 12
Views: 2663

Yea, I used the BC libraries in PHP. Code was about 5 lines.
by matter
Wed Oct 14, 2009 3:34 pm
Forum: Challenges
Topic: Like a 8411
Replies: 24
Views: 34993

This is a test of whether you're a true 'hacker' or not :-P
by matter
Tue Oct 13, 2009 8:13 am
Forum: Challenges
Topic: Didactic Blue
Replies: 44
Views: 84805

Ugh, that was just annoying in the end. Take a step back, and look closer.
by matter
Tue Oct 13, 2009 7:06 am
Forum: Challenges Solved
Topic: didactic green
Replies: 12
Views: 2531

Good ol' bitmap :-)
by matter
Tue Oct 13, 2009 5:17 am
Forum: Challenges Solved
Topic: UpCount
Replies: 28
Views: 6527

I don't like java, so I translated the code to PHP: function calc($depth) { if ($depth == 0) return 1; $cc = calc($depth - 1); return (double)$cc + ($depth % 7) + (((($cc ^ $depth) % 4) == 0) ? 1 : 0); } echo calc(11589); Didn't take more than 1 minute to translate and run ;) Yup, did exactly the s...