HomeThe ClassicsFarai's Codelab

This is a test page

Published: Updated:

There’s nothing special here, I’m just writing stuff.

Here’s another paragraph of stuff.

  • A list,
  • Another list item
    • A nested list item
    • the final nested list item
  • Final list item

Going to keep writing here.

#A code block with some super sort
import random

def super_sort(arr):
    arr = random.shuffle(arr)

    while not isSorted(arr):
        arr = random.shuffle(arr)
    
    return arr

def isSorted(arr):
    prev = arr[0]
    for i in arr:
        if i >= prev:
            return False
        prev = i
    return True