We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8a30c7 commit 8311e37Copy full SHA for 8311e37
names/names.py
@@ -10,7 +10,9 @@
10
names_2 = f.read().split("\n") # List containing 10000 names
11
f.close()
12
13
-duplicates = []
+duplicates = [] # Return the list of duplicates in this data structure
14
+
15
+# Replace the nested for loops below with your improvements
16
for name_1 in names_1:
17
for name_2 in names_2:
18
if name_1 == name_2:
0 commit comments