
Search found 45 matches
- Thu Sep 08, 2011 10:13 am
- Forum: Challenges
- Topic: Real Simple Access
- Replies: 14
- Views: 19811
- Thu Sep 08, 2011 9:49 am
- Forum: Challenges
- Topic: Real Simple Access
- Replies: 14
- Views: 19811
- Sat Oct 09, 2010 1:52 pm
- Forum: The Hacker's Server
- Topic: Berma calculation
- Replies: 10
- Views: 17743
This python code shows me all solutions in range 0..9999:
If you like math, you can prove that { 301+k*420 for k=0,1,2,3,... } is the set of all solutions.
So, the minimum number of eggs is 301.
Code: Select all
for n in range(10000):
s = sum((n-1)%m for m in range(2,7))
if s==0 and (n%7)==0:
print n
So, the minimum number of eggs is 301.
- Sun Aug 08, 2010 9:47 am
- Forum: Challenges
- Topic: Duke Box
- Replies: 26
- Views: 45097
- Sun Nov 22, 2009 3:52 pm
- Forum: Challenges Solved
- Topic: Surely Smallester Mouse
- Replies: 23
- Views: 7080
- Sun Jun 14, 2009 6:16 pm
- Forum: Challenges Solved
- Topic: Who goes there?
- Replies: 22
- Views: 7818
- Fri May 22, 2009 2:33 pm
- Forum: Challenges
- Topic: Hack VM (initial memory file) [answered]
- Replies: 3
- Views: 8943
- Wed Apr 08, 2009 3:27 pm
- Forum: Challenges Solved
- Topic: rangearmentRe
- Replies: 19
- Views: 3307
- Sat Mar 28, 2009 10:20 am
- Forum: Challenges
- Topic: Super Small Hello World
- Replies: 6
- Views: 14298
- Sat Mar 21, 2009 1:11 pm
- Forum: Challenges Solved
- Topic: Don't fear the Maths
- Replies: 9
- Views: 1091
- Fri Mar 20, 2009 6:54 pm
- Forum: Challenges Solved
- Topic: Rainbow in the Dark
- Replies: 3
- Views: 911
Rainbow in the Dark
It took me quite a while until I figured out the correct sort sequence of the pixels. This was very helpful: http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_RGB_to_HSL_or_HSV :) Here is my Python Code: import Image img = Image.open("rainbow.png") pixel = img.load() width,height = ...
- Wed Mar 18, 2009 3:41 pm
- Forum: Challenges Solved
- Topic: rangearmentRe
- Replies: 19
- Views: 3307
rangearmentRe
Nice challenge!
It is quite easy if you use the right tools.
It is quite easy if you use the right tools.

Code: Select all
import os
f = open("img.png","wb")
for path,dir,files in os.walk("manyfiles"):
for file in files:
f.write(chr(len(open(os.path.join(path,file)).read())))
f.close()
- Wed Mar 11, 2009 9:12 pm
- Forum: The Hacker's Server
- Topic: Danger - don't read this
- Replies: 13
- Views: 12635
- Wed Mar 11, 2009 2:46 pm
- Forum: The Hacker's Server
- Topic: Danger - don't read this
- Replies: 13
- Views: 12635
Danger - don't read this
I've warned you!
Don't click here: http://bit.ly/dontclickme
- Tue Mar 10, 2009 9:58 pm
- Forum: Challenges
- Topic: Like a 8411
- Replies: 24
- Views: 34921