Skip to content

Commit

Permalink
Update BucketSort.py
Browse files Browse the repository at this point in the history
Removed 'notes'
  • Loading branch information
mateusadada committed Jul 10, 2024
1 parent 506f277 commit f8f8891
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions solved_exercises/exercise_027/BucketSort.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,10 @@ def bucket_sort(input_list):
print('ORIGINAL LIST:')
print(input_list)

# Início do tempo gasto
inicial = time.time()

sorted_list = bucket_sort(input_list)

# Final do tempo gasto
final = time.time()
tempo_gasto = final - inicial

Expand Down

0 comments on commit f8f8891

Please sign in to comment.