Skip to content

Commit 3d29f9f

Browse files
committed
validation from circleci
1 parent 85cff64 commit 3d29f9f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

example/lectures/2020/kmom03/assignment3.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
Om de gör det byt plats på dem, annars skriv ut vilket/vilka av talen som inte finns i listan.
77
"""
88
import random
9-
l = [0,15,1,6,8,2,4,7]
9+
l = [0, 15, 1, 6, 8, 2, 4, 7]
1010

11-
number = random.randint(0,10)
12-
number2 = random.randint(0,10)
11+
number = random.randint(0, 10)
12+
number2 = random.randint(0, 10)
1313
print(l)
1414
found = False
1515
try:

example/lectures/2020/kmom03/slicing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
How slicing works with step
33
"""
4-
numbers = [0,1,2,3,4]
4+
numbers = [0, 1, 2, 3, 4]
55

66
START = 0
77
END = 5

example/lectures/2020/kmom03/sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Implementation of bubblesort
33
"""
4-
l = [2,5,1,0,3]
4+
l = [2, 5, 1, 0, 3]
55
print(l)
66
n = len(l)
77
for j in range(n-1):

example/lectures/2020/kmom05/find_movies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def search_movies(movies):
2525
movies_tuple = (
2626
("Baby Driver", "2017", "Edgar Wright"),
2727
("Scott Pilgrim vs. the world", "2010", "Edgar Wright"),
28-
("Thor: Ragnarok", "2017", "Taika Waititi"),
28+
("Thor: Ragnarok", "2017", "Taika Waititi"),
2929
("What we do in the shadows", "2014", "Taika Waititi"),
3030
("Tucker and Dale vs Evil", "2010", "Eli Craig"),
3131
)

example/lectures/2020/kmom06/shoppinglist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def read_file(filename):
1010
return fd.read()
1111
except FileNotFoundError:
1212
print("You are missing the file")
13-
return
13+
return
1414

1515

1616

0 commit comments

Comments
 (0)