Search found 4 matches

by Omgaskinhead
Sun Mar 06, 2011 12:54 pm
Forum: Challenges
Topic: Please help me to solve 'One Minute Man' challenge
Replies: 20
Views: 33673

laz0r wrote:I am amazed that Python doesn't have a) a manual, b) a time-date type or c) a for-loop!
tails wrote:d) users who can find those three ...?
Stopit, please stop it! Or I'll die of a laughing fit! [ROFL]
by Omgaskinhead
Sun Mar 06, 2011 12:43 pm
Forum: Challenges
Topic: "Basic" Challenge help
Replies: 16
Views: 22802

Ok Thank you CodeX, now I remember.. We had this in school last few weeks. (I'm actually learning informatican or whatever you call it in the US --> I'm swiss :P)

Btw: solved the Challenge. With BigInt it's easier than I thought :)
by Omgaskinhead
Sun Mar 06, 2011 9:24 am
Forum: Challenges
Topic: "Basic" Challenge help
Replies: 16
Views: 22802

Strangely enough I disagree with your statement about Python being crap but opinion aside; such statements aren't very becoming :? On the factual side of things: Python uses arbitrary precision integers so the only limit on the maximum value is determined by how much memory your Python process can ...
by Omgaskinhead
Sun Mar 06, 2011 12:00 am
Forum: Challenges
Topic: "Basic" Challenge help
Replies: 16
Views: 22802

Base 7 is a different way to "write" integers. For example: base 2 (or binary) is 01010001100 and so on.. it means, that you can write 2 different chars to write your number. in base 3 you can use 0, 1 and 2, in base 4 you can use 0, 1, 2 and 3. So we use base 10 (0 till 9 are 10 different...