Search found 269 matches
- Wed Aug 17, 2011 6:52 pm
- Forum: Challenges
- Topic: Anybody Out There?
- Replies: 22
- Views: 29900
- Mon Jul 18, 2011 10:59 am
- Forum: Runaway Robot Puzzle
- Topic: Best algorithms?
- Replies: 16
- Views: 66754
- Wed Jul 13, 2011 11:45 pm
- Forum: Challenges
- Topic: Countdown Calc
- Replies: 18
- Views: 29158
- Mon Jun 13, 2011 7:53 pm
- Forum: General Puzzles
- Topic: Marking of solved/unsolved challenges
- Replies: 4
- Views: 21610
- Mon Jun 13, 2011 7:50 pm
- Forum: Mortal Coil
- Topic: New levels: 1107 to 1206
- Replies: 9
- Views: 38551
- Mon Nov 01, 2010 9:26 pm
- Forum: Challenges Solved
- Topic: Spiral Bits
- Replies: 31
- Views: 4817
I don't think it's fair to complain that the challenge is too tedious to solve by hand - the whole point is to write a program. Having to do it a second time is exactly the reason you should always automate tedious tasks anyway, even if you don't expect to need to repeat the job. But having said tha...
- Fri Oct 15, 2010 5:59 pm
- Forum: Challenges Solved
- Topic: Delegates
- Replies: 17
- Views: 6299
You can derive the sum of squares expression from the n(n+1)/2 identity: 1) Expand out sum<1,n>(2x-1) and you'll see that it's equal to n^2 2) Hence the sum of the first n squares has n 1s, n-1 3s, n-2 5s, and so on - so it's sum<1,n>((n-x+1)(2x-1)) 3) Expand that out into separate sums and solve fo...
- Thu Oct 07, 2010 12:17 am
- Forum: The Hacker's Server
- Topic: Berma calculation
- Replies: 10
- Views: 17743
- Thu Oct 01, 2009 10:05 pm
- Forum: Challenges
- Topic: Maeda Path?
- Replies: 12
- Views: 18578
- Tue Aug 25, 2009 9:06 pm
- Forum: OneOfUs
- Topic: Huge differences between people's level.
- Replies: 7
- Views: 28853
- Thu Jul 23, 2009 7:42 am
- Forum: Challenges Solved
- Topic: Delegates
- Replies: 17
- Views: 6299
Yes, integer division rounds. But if you write 10.0 explicitly then it will force it to use double-precision floating point instead. But dividing by 10 and then multiplying by five, without rounding, is the same as dividing by two. You've picked C up pretty quickly! But some of your syntax is odd or...
- Wed Jul 22, 2009 12:35 pm
- Forum: Challenges
- Topic: Help me find the love of my life...
- Replies: 7
- Views: 11791
- Tue Jul 21, 2009 10:16 pm
- Forum: Challenges
- Topic: Random Problem Challenge
- Replies: 8
- Views: 17043
- Sun Jul 19, 2009 11:37 am
- Forum: Challenges
- Topic: Deluge
- Replies: 7
- Views: 20018
I think your assumptions are correct. I seem to remember it just says you failed to flood correctly even if the actual problem was an error, e.g. exceeding the cycle count. So if your algorithm does work on test images, but not when submitted, it's likely that it's just taking too many cycles, and y...
- Thu Jul 09, 2009 9:49 pm
- Forum: Challenges
- Topic: Confused on what a challenge is asking?
- Replies: 48
- Views: 86435