Skip to content

Commit 4c0b967

Browse files
Kyle WeissKyle Weiss
Kyle Weiss
authored and
Kyle Weiss
committed
yay for formatting fixes
1 parent 96ad11d commit 4c0b967

File tree

1 file changed

+10
-29
lines changed

1 file changed

+10
-29
lines changed

test_arrays.rb

+10-29
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,24 @@
22
names = ["Bob", "Joe", "Waffles!"]
33
puts "First, we should see Bob:"
44
puts names[0]
5-
puts "Now we should se Joe:"
5+
puts "Now we should see Joe:"
66
puts names[1]
77
puts "Lastly, who wants some Waffles?"
8-
puts names[2]
9-
puts ""
8+
puts names[2], "\n"
109
puts "If we ask for something that doesn't exist (ie, out of range), we should get nothing:"
11-
puts names[3]
12-
13-
puts
10+
puts names[3], "\n"
1411

1512
# we can create a variable that is an empty array...
1613
types_of_waffles = []
1714
# ...and then populate it:
1815
types_of_waffles[2] = "White-chocolate-chip and blueberry"
1916
types_of_waffles[0] = "Whole-wheat and banana"
2017
types_of_waffles[1] = "Buttermilk"
21-
puts types_of_waffles
22-
23-
puts
18+
puts types_of_waffles, "\n"
2419

2520
# we can also change them...
2621
types_of_waffles[1] = "Sardine and horse radish"
27-
puts types_of_waffles
28-
29-
puts
22+
puts types_of_waffles, "\n"
3023

3124
# Regarding the usage of the Method, "Each":
3225
fruits = ["bananas", "strawberries", "mangos"]
@@ -35,8 +28,6 @@
3528
end
3629
# This essentially goes through the array, doing somthing to *each* something *in* the array
3730

38-
puts
39-
4031
# let's look at .to_s and .join
4132
veggies = ["Broccoli", "Carrots", "Bell Peppers"]
4233
# this first one should list each object on an individual line:
@@ -49,42 +40,32 @@
4940
puts veggies.join(', ')
5041
# Note that the above one does not add a comma after the last item in the array - the last item is not
5142
# considered. If you want to add something after the final item in the array:
52-
puts veggies.join(' :) ') + ' 8)'
53-
54-
puts
43+
puts veggies.join(' :) ') + " 8) \n" #the 8) is adedd to the puts line
5544

5645
# Now to look at .push, .pop and .last
5746
# push and pop are opposites, as + and - are opposites
5847
# push adds an object to the end of the array:
5948
puts veggies.to_s
6049
veggies.push "Onions"
61-
puts veggies.to_s
62-
63-
puts
50+
puts veggies.to_s, "\n"
6451

6552
# pop removes the last object from the array:
6653
puts veggies.to_s
6754
veggies.pop
68-
puts veggies.to_s
69-
70-
puts
55+
puts veggies.to_s, "\n"
7156

7257
# and finally, last does not affect the array - it just tells us what is the last item in the array
7358
puts veggies.last
7459
veggies.push "Onions"
75-
puts veggies.last
76-
77-
puts
60+
puts veggies.last, "\n"
7861

7962
some_array = %w[a b c d e f g]
8063
puts "some_array: #{some_array.join(", ")}"
81-
puts some_array[-3, 2].join(", ")
64+
puts some_array[-3, 2].join(", "), "\n"
8265
# The reason this gives us "e, f", is because: while -3 tells Ruby where to start looking in the array
8366
# (the -3th index, or "e"), the next number (2) tells Ruby the length of what we want returned (meaning,
8467
# "2" has nothing to do with the index ).
8568

86-
puts
87-
8869
a1 = ["red", "green", "blue"]
8970
a2 = ["a", "b", "c"]
9071
a3 = [1, 2, 3]

0 commit comments

Comments
 (0)