Personal tools

Eth1-Winter Python Game

From Eth0Wiki

Revision as of 19:46, 17 January 2009 by Elmer (talk | contribs) (New page: = Rules = The rules are quite straight-forward, they are as follows: * The competition is won by the submission with the highest score * Your code will produce valid results (a testing too...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Rules

The rules are quite straight-forward, they are as follows:

  • The competition is won by the submission with the highest score
  • Your code will produce valid results (a testing tool is provided)
  • Your code will run with Python2.5
  • Your code will use the Python default library ONLY!
  • Cheating is not allowed (writing the code in comment and later eval(), etc).
  • Whether code is 'cheating' is decided by the issuer of this competition (reasons will be provided).
  • You can submit as often as you like

Scoring

  • Every character counts for a single point
  • Whitespace used for indent (and trailing whitespace) is ignored
  • Newlines count for a single point
  • Comments are ignored (for the score)
  • Your score is 72500 divided by the amount of points you scored.

How to win

  • Learn Python
  • Write short code
  • Learn more Python
  • Write the shortest code
  • Keep the code to yourself
  • Do share ideas and knowledge, this is good behaviour

Submission

You can send in your contributions, by the following channels:

Prizes will be awarded for the highest scoring submissions / most entertaining submissions. There's ten small prizes available for participators.

Getting help

There will be tutoring available via either IRC (irc://irc.eth-0.nl/eth0) or just hanging out together :)

Challenge

Relevant files:

You will be given a square of 15x15 (random) integers in the range 10 to 99 (inclusive). This will be a single string with spaces to separate the columns and linebreaks to separate lines.

Write a function that returns a tuple of the score of the square that yields the highest score and its x, y coordinate. The most bottom left coordinate (on the string) is 1,1, the most bottom right coordinate is 15,1 The score is the combined value of all *surrounding* squares:

  • Even numbers count positive
  • Odd numbers count negative.

In this example, the x marks the coordinate we're calculating the value for:

 4 5 1
 3 x 2
 8 6 1

The score is: (4 + 2 + 8 + 6) - (5 + 1 + 3 + 1) = 10


Good luck :)