Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.55K
~4K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for vegaseat

Hi, I suspect there is a small bug in your bubble_sort function. You wrote : [code=python] def bubble_sort(list2): swap_test = False for i in range(0, len(list2) - 1): for j in range(0, len(list2) - i - 1): if list2[j] > list2[j + 1]: list2[j], list2[j + 1] = list2[j + …

Member Avatar for Skrell
1
4K

The End.