Skip to content

Commit 3780b25

Browse files
authored
Update missing.py
1 parent 5ca79a4 commit 3780b25

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

missing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
else:
1414
lang = sys.argv[1]
1515

16+
# problem file format: NNNN-name-of-problem.lang
1617
pattern = re.compile(r'^(\d{4}-[a-z0-9\-]+)(\.[a-z]{2,4})$')
1718

1819
ignored_extensions = (
@@ -41,4 +42,4 @@
4142

4243
sol = reduce(lambda x, y: x | y, (x for x in langs.values() if x != lang))
4344

44-
print(sol - langs[lang])
45+
print(sol - langs[lang])

0 commit comments

Comments
 (0)