mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
@@ -69,7 +69,7 @@ def main():
|
||||
f"{greatest_common_divisor(num_1, num_2)}"
|
||||
)
|
||||
print(f"By iterative gcd({num_1}, {num_2}) = {gcd_by_iterative(num_1, num_2)}")
|
||||
except (IndexError, UnboundLocalError, ValueError):
|
||||
except IndexError, UnboundLocalError, ValueError:
|
||||
print("Wrong input")
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user