Skip to content
On this page

05_List_11.py

WARNING

โค้ดกาวมากครับ อย่าลอกเลย 😭😭😭

ทำเองเถอะนะครับ จะได้ทำข้อสอบได้ 🥲🥲🥲

py
missing_degits = []
search = input()

for i in range(10):
    if str(i) not in search:
        missing_degits.append(str(i))

print(",".join(missing_degits) if len(missing_degits) else "None")

People who plagiarize Com Prog HW:

People who do Com Prog HW by themself:

Released under the MIT License