Skip to content

Instantly share code, notes, and snippets.

View wanysteus's full-sized avatar

Erwan Caffier wanysteus

View GitHub Profile
@wanysteus
wanysteus / space-engineering.jpg
Last active June 17, 2025 03:20
Books—and more—for Space Engineering
space-engineering.jpg
@wanysteus
wanysteus / quicksort.py
Last active October 26, 2024 09:03
QuickSort, condensed version
def quicksort(L):
return L if len(L) <= 1 else quicksort([e for e in L[1:] if e <= L[0]]) + [L[0]] + quicksort([e for e in L[1:] if e > L[0]])