Skip to content

Commit

Permalink
Merge pull request #46 from kaliroi/issue-BUG051
Browse files Browse the repository at this point in the history
Solving issue for BUG051, solved!
  • Loading branch information
edoardocolella authored Dec 13, 2023
2 parents aabb27c + b98026c commit 3f1e49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/BUG/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def is_valid_triangle(side1: int, side2: int, side3: int) -> bool:
"""
BUG051: is_valid_triangle should return True if the sides form a valid triangle, not if they don't.
"""
result = side1 + side2 <= side3
result = side1 + side2 >= side3
return result


Expand Down

0 comments on commit 3f1e49c

Please sign in to comment.