Awesome Reviewers

When your code builds collections or performs comparisons, normalize inputs to a consistent representation and enforce a deterministic order before iterating/outputting.

Apply this to:

Example patterns:

# Deduplicate + deterministic order
unique = list(dict.fromkeys(files))
unique.sort()

# Normalized version comparison
def parse_version(v: str):
    parts = [int(x) for x in v.split('.')]
    return tuple(parts + [0] * (3 - len(parts)))  # pad to 3 components

# (Optionally) also handle longer inputs explicitly if your rules require it.