From Paul Warner to Everyone: (2:21 PM)
def bogosort(l): while not is_in_order(l): random.shuffle(x)
From Pranet Sharma to Everyone: (2:21 PM)
def bozo(x): while is_in_order == False: random.suffle(x)'
*accidental apostrophe, and suffle should be shuffle
From Dhruv Ranganath to Everyone: (2:21 PM)
you need to return x at the end right
From Carl Pittenger to Everyone: (2:21 PM)
def bozo(x): while not is_in_order(x): random.shuffle(x) return x
From Pranet Sharma to Everyone: (2:22 PM)
yep
From Carl Pittenger to Everyone: (2:36 PM)
def gcd(a, b): while b: a, b = b, a % b return a
From Sophia Benjamin to Everyone: (2:36 PM)
def euclid(m,n):
 if m