Загрузить файлы в «/»

This commit is contained in:
Максим Гвоздев 2025-11-21 13:26:11 +00:00
commit 564e72c0f0

7
comparison.py Normal file
View File

@ -0,0 +1,7 @@
def compare(a: str) -> bool:
if ">" in a:
left, right = a.split(">", 1)
return int(left) > int(right)
elif "<" in a:
left, right = a.split("<", 1)
return int(left) < int(right)