Skip to content

Commit 004ce9c

Browse files
authored
Update common_end.py
1 parent f941d4a commit 004ce9c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

List-1/common_end.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def common_end(a, b):
1414
return True if a[0] == b[0] or a[-1] == b[-1] else False
1515

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

0 commit comments

Comments
 (0)