Skip to content

Commit 90cf108

Browse files
authored
Update app.py
1 parent 548de09 commit 90cf108

File tree

1 file changed

+4
-3
lines changed
  • exercises/08.1-Merge_list

1 file changed

+4
-3
lines changed

exercises/08.1-Merge_list/app.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
chunk_one = [ 'Lebron', 'Aaliyah', 'Diamond', 'Dominique', 'Aliyah', 'Jazmin', 'Darnell' ]
2-
chunk_two = [ 'Lucas' , 'Jake','Scott','Amy', 'Molly','Hannah','Lucas']
1+
chunk_one = ['Lebron', 'Aaliyah', 'Diamond', 'Dominique', 'Aliyah', 'Jazmin', 'Darnell']
2+
chunk_two = ['Lucas', 'Jake', 'Scott', 'Amy', 'Molly', 'Hannah', 'Lucas']
33

44

55
def merge_list(list1, list2):
6-
#Your code go here:
6+
# Your code here
7+
78

89
print(merge_list(chunk_one, chunk_two))

0 commit comments

Comments
 (0)