Skip to content

Commit

Permalink
fix(BUG): fixed BUG081
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdr00t committed Dec 13, 2023
1 parent 6fc06a2 commit 7fcacee
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions source/BUG/forExperts.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,9 @@ def lcm(a: int, b: int) -> int:
def test():

# BUG081
print("BUG081: ")
try:
array = [1, 6, 5, 7, 2, 4, 9]
result = stalin_sort(array) == [1, 6, 7, 9]
if result is False:
if stalin_sort(array) == [1, 6, 7, 9]:
print("BUG081: SOLVED SUCCESSFULLY")
else:
print("BUG081: RETRY")
Expand Down

0 comments on commit 7fcacee

Please sign in to comment.