-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblanket-patterns-solution.rb
56 lines (49 loc) · 1.11 KB
/
blanket-patterns-solution.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Template for the pattern.
template = 'RRGGBBYYKK'
# 1: Using a loop to output the pattern.
index = 0
loop do
break if index > 20
puts template
template = template[1..-1] + template.slice(0)
index += 1
end
# 2: Using a while loop to output the pattern.
index = 0
while index <= 20
puts template
template = template.split('')
first_character = template.shift
template = template.join + first_character
index += 1
end
# 3: Using a until loop to output the pattern.
index = 21
until index <= 0
puts template
template = template.split('')
first_character = template.shift
template = template.join + first_character
index -= 1
end
# 4: Using the times iterator.
index = 21
index.times do
puts template
template = template[1..-1] + template.slice(0)
end
# 5: Using the upto iterator.
0.upto(20) do
puts template
template = template[1..-1] + template.slice(0)
end
# 6: Using the downto iterator.
20.downto(0) do
puts template
template = template[1..-1] + template.slice(0)
end
# 7: Using the each iterator.
(0..20).each do
puts template
template = template[1..-1] + template.slice(0)
end