Compare commits

..

No commits in common. "natally-patch-1" and "main" have entirely different histories.

View File

@ -1,11 +0,0 @@
def compare(expression: srt) -> bool:
if '>' in expression:
parts = expression.split(">")
a = int(parts[0])
b = int(parts[1])
return a>b
else:
parts = expression.split("<")
a=int(parts[0])
b=int(parts[1])
return a<b