Skip to content

Commit 220ed6d

Browse files
committed
modified dogs warmup
1 parent 2687dc0 commit 220ed6d

File tree

1 file changed

+40
-7
lines changed

1 file changed

+40
-7
lines changed

dogs.rb

+40-7
Original file line numberDiff line numberDiff line change
@@ -3,43 +3,76 @@
33
dogs = ["Fido", "Harleigh", "Mali", "Trixie", "Snow", "Victory"]
44

55
def how_many_dogs(dogs)
6-
6+
dogs.length
77
end
88

99
def name_lengths(dogs)
10-
10+
names = []
11+
dogs.each do |lengths|
12+
names << lengths.length
13+
end
14+
names
1115
end
1216

1317
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
1524
end
1625

17-
def first_three_dogs_with_each(dogs)
1826

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
1935
end
2036

2137
def first_three_dogs_without_each(dogs)
22-
38+
dogs[0..2] #slicing an array
2339
end
2440

2541
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
2748
end
2849

29-
def sum_of_all_dog_name_lengths(dogs)
3050

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
3158
end
3259

3360
def dogs_with_long_names(dogs)
3461

3562
end
3663

64+
dogs = ["Fido", "Harleigh", "Mali", "Trixie", "Snow", "Victory"]
65+
dogs2 =["Fido", "Harleigh"]
66+
67+
3768
puts "*"*80
3869
puts "Make each method return the correct value"
3970
puts "The check method will run and tell you if the answer is correct"
4071
puts "*"*80
4172

4273
check("how_many_dogs", how_many_dogs(dogs) == 6)
74+
check("how_many_dogs", how_many_dogs(dogs2) == 2)
75+
4376
check("name_lengths", name_lengths(dogs) == [4, 8, 4, 6, 4, 7])
4477
check("reverse_dog_names", reverse_dog_names(dogs) == ["odiF", "hgielraH", "ilaM", "eixirT", "wonS", "yrotciV"])
4578
check("first_three_dogs_with_each", first_three_dogs_with_each(dogs) == ["Fido", "Harleigh", "Mali"])

0 commit comments

Comments
 (0)