Lead Architect

Achievements

Useless Algorithm

Unimpressive, yet somehow accomplished:

  1. Convinced 17 people to use Comic Sans in a professional setting.
  2. Spent 3 hours optimizing a 10-line Python script for a 5-line task.
  3. Designed a database schema for a project that only had 3 users.
See more achievements

Details:

The algorithm in question is a simple sorting function that sorts a list of integers in ascending order. It was achieved by using a combination of nested loops, recursive function calls, and a pinch of magic.

Here's a snippet of the code:

def sort(list):
  for i in range(len(list)):
    for j in range(i+1, len(list)):
      if list[i] > list[j]:
        list[i], list[j] = list[j], list[i]
  return list

This achievement was recognized by the prestigious Institute of Useless Algorithmic Achievements (IUALA) in 2018.