Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bounce.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-10-07 15:33:05 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-10-07 15:33:05 (GMT)
commitfc60fada38152a8e20bb436ca6cd835e0f34dbb5 (patch)
tree582e0b1c3d70b6d4ce877207f87c8b5cacea6552 /bounce.py
parent1cba783367bc7dae271488b4f106ff5a0883cc82 (diff)
simplify EASY level
Diffstat (limited to 'bounce.py')
-rw-r--r--bounce.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bounce.py b/bounce.py
index ba1cecb..bd8c8b5 100644
--- a/bounce.py
+++ b/bounce.py
@@ -12,9 +12,10 @@
# Boston, MA 02111-1307, USA.
# The challenges are tuples: (a fraction to display, a bar to display)
-EASY = [('1/2', 12), ('1/3', 12), ('3/4', 12),
- ('1/4', 12), ('2/3', 12), ('1/6', 12),
- ('5/6', 12)]
+EASY = [('1/2', 2), ('1/3', 3), ('3/4', 4),
+ ('1/4', 4), ('2/3', 3), ('1/6', 6),
+ ('5/6', 6), ('2/6', 6), ('3/6', 6),
+ ('2/4', 4), ('4/6', 6)]
MEDIUM = [('2/8', 12), ('2/4', 12), ('3/6', 12),
('6/12', 12), ('4/6', 12), ('2/6', 12),
('5/12', 12), ('3/12', 12), ('7/12', 12),