|
3 | 3 | dogs = ["Fido", "Harleigh", "Mali", "Trixie", "Snow", "Victory"]
|
4 | 4 |
|
5 | 5 | def how_many_dogs(dogs)
|
6 |
| - |
| 6 | + dogs.length |
7 | 7 | end
|
8 | 8 |
|
9 | 9 | def name_lengths(dogs)
|
10 |
| - |
| 10 | + names = [] |
| 11 | + dogs.each do |lengths| |
| 12 | + names << lengths.length |
| 13 | + end |
| 14 | + names |
11 | 15 | end
|
12 | 16 |
|
13 | 17 | def reverse_dog_names(dogs)
|
14 |
| - |
| 18 | + reversed_names = [] |
| 19 | + dogs.each do |name| |
| 20 | + name2 = name.reverse |
| 21 | + reversed_names.push(name2) |
| 22 | + end |
| 23 | + reversed_names |
15 | 24 | end
|
16 | 25 |
|
17 |
| -def first_three_dogs_with_each(dogs) |
18 | 26 |
|
| 27 | +def first_three_dogs_with_each(dogs) |
| 28 | + first_three_dogs = [] |
| 29 | + dogs.each do |name| |
| 30 | + if name == dogs[0] || name == dogs[1] || name == dogs[2] |
| 31 | + first_three_dogs.push(name) |
| 32 | + end |
| 33 | + end |
| 34 | + first_three_dogs |
19 | 35 | end
|
20 | 36 |
|
21 | 37 | def first_three_dogs_without_each(dogs)
|
22 |
| - |
| 38 | + dogs[0..2] #slicing an array |
23 | 39 | end
|
24 | 40 |
|
25 | 41 | def reverse_case_dog_names(dogs)
|
26 |
| - |
| 42 | + reversed_case = [] |
| 43 | + dogs.each do |name| |
| 44 | + name2 = name.swapcase |
| 45 | + reversed_case.push(name2.to_s) |
| 46 | + end |
| 47 | + reversed_case |
27 | 48 | end
|
28 | 49 |
|
29 |
| -def sum_of_all_dog_name_lengths(dogs) |
30 | 50 |
|
| 51 | +def sum_of_all_dog_name_lengths(dogs) |
| 52 | + name_length = 0 |
| 53 | + dogs.each do |name| |
| 54 | + name2 = name.length |
| 55 | + name_length = name_length.to_i + name2 |
| 56 | + end |
| 57 | + return name_length.to_i |
31 | 58 | end
|
32 | 59 |
|
33 | 60 | def dogs_with_long_names(dogs)
|
34 | 61 |
|
35 | 62 | end
|
36 | 63 |
|
| 64 | +dogs = ["Fido", "Harleigh", "Mali", "Trixie", "Snow", "Victory"] |
| 65 | +dogs2 =["Fido", "Harleigh"] |
| 66 | + |
| 67 | + |
37 | 68 | puts "*"*80
|
38 | 69 | puts "Make each method return the correct value"
|
39 | 70 | puts "The check method will run and tell you if the answer is correct"
|
40 | 71 | puts "*"*80
|
41 | 72 |
|
42 | 73 | check("how_many_dogs", how_many_dogs(dogs) == 6)
|
| 74 | +check("how_many_dogs", how_many_dogs(dogs2) == 2) |
| 75 | + |
43 | 76 | check("name_lengths", name_lengths(dogs) == [4, 8, 4, 6, 4, 7])
|
44 | 77 | check("reverse_dog_names", reverse_dog_names(dogs) == ["odiF", "hgielraH", "ilaM", "eixirT", "wonS", "yrotciV"])
|
45 | 78 | check("first_three_dogs_with_each", first_three_dogs_with_each(dogs) == ["Fido", "Harleigh", "Mali"])
|
|
0 commit comments