(a: str, b: str)
| 25 | |
| 26 | |
| 27 | def chromium_version_less_than(a: str, b: str) -> bool: |
| 28 | left = list(map(int, a.split("."))) |
| 29 | right = list(map(int, b.split("."))) |
| 30 | for i in range(4): |
| 31 | if left[i] > right[i]: |
| 32 | return False |
| 33 | if left[i] < right[i]: |
| 34 | return True |
| 35 | return False |
no outgoing calls