fixed typo -> Issue #39
[ruby_koans.git] / src / about_scoring_project.rb
1 require File.expand_path(File.dirname(__FILE__) + '/edgecase')
2
3 # Greed is a dice game where you roll up to five dice to accumulate
4 # points.  The following "score" function will be used to calculate the
5 # score of a single roll of the dice.
6 #
7 # A greed roll is scored as follows:
8 #
9 # * A set of three ones is 1000 points
10 #
11 # * A set of three numbers (other than ones) is worth 100 times the
12 #   number. (e.g. three fives is 500 points).
13 #
14 # * A one (that is not part of a set of three) is worth 100 points.
15 #
16 # * A five (that is not part of a set of three) is worth 50 points.
17 #
18 # * Everything else is worth 0 points.
19 #
20 #
21 # Examples:
22 #
23 # score([1,1,1,5,1]) => 1150 points
24 # score([2,3,4,6,2]) => 0 points
25 # score([3,4,5,3,3]) => 350 points
26 # score([1,5,1,2,4]) => 250 points
27 #
28 # More scoring examples are given in the tests below:
29 #
30 # Your goal is to write the score method.
31
32 def score(dice)
33   # You need to write this method
34   #--
35   result = 0
36   (1..6).each do |face|
37     count = dice.select { |n| n == face }.size
38     while count > 0
39       if count >= 3
40         result += (face == 1) ? 1000 : 100 * face
41         count -= 3
42       elsif face == 5
43         result += count * 50
44         count = 0
45       elsif face == 1
46         result += count * 100
47         count = 0
48       else
49         count = 0
50       end
51     end
52   end
53   result
54   #++
55 end
56
57 class AboutScoringProject < EdgeCase::Koan
58   def test_score_of_an_empty_list_is_zero
59     assert_equal 0, score([])
60   end
61
62   def test_score_of_a_single_roll_of_5_is_50
63     assert_equal 50, score([5])
64   end
65
66   def test_score_of_a_single_roll_of_1_is_100
67     assert_equal 100, score([1])
68   end
69
70   def test_score_of_multiple_1s_and_5s_is_the_sum_of_individual_scores
71     assert_equal 300, score([1,5,5,1])
72   end
73
74   def test_score_of_single_2s_3s_4s_and_6s_are_zero
75     assert_equal 0, score([2,3,4,6])
76   end
77
78   def test_score_of_a_triple_1_is_1000
79     assert_equal 1000, score([1,1,1])
80   end
81
82   def test_score_of_other_triples_is_100x
83     assert_equal 200, score([2,2,2])
84     assert_equal 300, score([3,3,3])
85     assert_equal 400, score([4,4,4])
86     assert_equal 500, score([5,5,5])
87     assert_equal 600, score([6,6,6])
88   end
89
90   def test_score_of_mixed_is_sum
91     assert_equal 250, score([2,5,2,2,3])
92     assert_equal 550, score([5,5,5,5])
93   end
94
95 end