diff --git a/comparison.py b/comparison.py deleted file mode 100644 index cc29bf6..0000000 --- a/comparison.py +++ /dev/null @@ -1,7 +0,0 @@ -def compare(a: str) -> bool: - for i in range(len(a)): - if(a[i].isdigit() == False): - if a[i] == "<": - return int(a[:i]) < int(a[i + 1:]) - elif (a[i] == ">"): - return int(a[:i]) > int(a[i + 1:]) \ No newline at end of file