You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The file numbers.txt contains integer numbers, one number per line.
2
+
# The contents could look like this:
3
+
4
+
# 2
5
+
# 45
6
+
# 108
7
+
# 3
8
+
# -10
9
+
# 1100
10
+
# ...etc...
11
+
12
+
# Please write a function named largest, which reads the file and returns the largest number in the file.
13
+
14
+
# Notice that the function does not take any arguments. The file you are working with is always named numbers.txt.
15
+
16
+
# NB: If Visual Studio Code can't find the file and you have checked that there are no spelling errors, take a look at the instructions following this exercise.
0 commit comments