def bubbleSort(arr):
n = len(arr)
# Traverse through all array elements
for i in range(n):
    # Last i elements are already in place
    for j in range(0, n-i-1):
        # traverse the array from 0 to n-i-1
        # Swap if the element found is greater
        # than the next element
        if arr[j] > arr[j+1] :
            arr[j], arr[j+1] = arr[j+1], arr[j -
                
                https://www.geeksforgeeks.org/bubble-sort/
  
 -
                
                https://www.geeksforgeeks.org/bubble-sort/ -
                
                https://links.infomee.fr/?GnzD5Q
  
 -
                
                https://links.infomee.fr/?GnzD5Q -
                
                https://www.integralist.co.uk/posts/algorithmic-complexity-in-python/
  
 -
                
                https://www.integralist.co.uk/posts/algorithmic-complexity-in-python/ -
                
                https://github.com/zhiwehu/Python-programming-exercises/blob/master/100%2B%20Python%20challenging%20programming%20exercises.txt
  
 -
                
                https://github.com/zhiwehu/Python-programming-exercises/blob/master/100%2B%20Python%20challenging%20programming%20exercises.txtAlgo pour faire du random avec poids
 -
                
                http://www.javascriptkit.com/javatutors/weighrandom2.shtml
  
 -
                
                http://www.javascriptkit.com/javatutors/weighrandom2.shtml