Following https://news.ycombinator.com/item?id=32186203, what are some of the obscure/coolest algorithms that you know?
What are some of the coolest algorithms you know?
1–5 of 5 posts
Re: What are some of the coolest algorithms you know?
#21- blissfully rising in morning
2- eating a large meal
3- successfully resume sleep
repeat indefinitely
Re: What are some of the coolest algorithms you know?
#3The sweep algorithm for computing least-squares multiple regression coefficients for all subsets of predictor variables -- see https://blogs.sas.com/content/iml/2018/04/18/sweep-operator-... .
Re: What are some of the coolest algorithms you know?
#4I dunno if it's "cool" in the sense of something I'd want to ever use, but Sleep Sort is amusing. https://kevlinhenney.medium.com/need-something-sorted-sleep-...
Re: What are some of the coolest algorithms you know?
#5The Fast Fourier transform is one of my favorites. Aside from its usual place in signal analysis, it’s useful for performing convolutions (see convolution theorem), computing derivatives, and other things. Plus, it’s super satisfying to walk through the derivation from the mathematics and see the Cooley-Tukey algorithm pop out at the end. That was one of my favorite sections to teach when I taught a data analysis class a decade and a half ago.