Blog

Here is a list of blog I've written so far:

Permutations quickly

Written by ettolrach, 2025-08-17.

Recently, I was writing a Haskell program which used the permutations function. I wanted to convert my code to Rust for fun, but I realised that Rust's standard library didn't come with such a funciton. That makes sense, since it's not commonly used for Rust programs, especially since a non-lazy version only works for small lists. Read more.