Skip to content

Commit d7e1d3c

Browse files
authored
Update make_ends.py
1 parent b8f5771 commit d7e1d3c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

List-1/make_ends.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
def make_ends(nums):
1414
return [nums[0], nums[-1]]
1515

16-
print(make_ends([1, 2, 3]))
17-
print(make_ends([1, 2, 3, 4]))
18-
print(make_ends([7, 4, 6, 2]))
16+
#To check:
17+
#print(make_ends([1, 2, 3]))
18+
#print(make_ends([1, 2, 3, 4]))
19+
#print(make_ends([7, 4, 6, 2]))

0 commit comments

Comments
 (0)