👋 Hi, I'm Braxton! - taxborn.com
I'm a 22-year-old Software Engineer working at Thomson Reuters on their Westlaw product.
- Accessibility on the Westlaw project
- 🌿 taxborn.com, my personal garden
- ⌨️ HSS, experiments in generating hashes as fast as possible
- 🥥 Coquito, a hobby programming language
quicksort :: Ord a => [a] -> [a]
quicksort [] = []
quicksort (x:xs) = quicksort smaller ++ [x] ++ quicksort larger
where
smaller = [a | a <- xs, a <= x]
larger = [a | a <- xs, a > x]
one of my favorite algorithms, expressed in Haskell. it reminds that simple, elegent code can wield so much power.