“Bogo Sort” Code-Antworten

Bogo Sort

def bogosort(x):
    while np.any(x[:-1] > x[1:]):
        np.random.shuffle(x)
    return x
Lazy Loris

Bogo Sort

x = np.array([2, 1, 4, 3, 5])
bogosort(x)
Lazy Loris

Ähnliche Antworten wie “Bogo Sort”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen