Skip to content

Commit 9deae31

Browse files
authored
Create solution.hide.py
1 parent a8b69dc commit 9deae31

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
chunk_one = ['Lebron', 'Aaliyah', 'Diamond', 'Dominique', 'Aliyah', 'Jazmin', 'Darnell']
2+
chunk_two = ['Lucas', 'Jake', 'Scott', 'Amy', 'Molly', 'Hannah', 'Lucas']
3+
4+
5+
def merge_list(list1, list2):
6+
# Your code here
7+
new_list = []
8+
for i in list1:
9+
new_list.append(i)
10+
for i in list2:
11+
new_list.append(i)
12+
13+
return new_list
14+
15+
16+
print(merge_list(chunk_one, chunk_two))

0 commit comments

Comments
 (0)