79477850

Date: 2025-03-01 15:50:18
Score: 1.5
Natty:
Report link
m=[]
for c in range(int(input())):
    if not c in m:
        m.append(input())

This preserves the order but does not add the element if it's already there.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user1582833