https://shawnnapora.github.io/blog/2022/07/29/euler-on-micro/ [jekyll-log] Shawn Napora Projects, Thoughts, and Ideas. Blog Projects About Project Euler on a Microcontroller I've recently been trying to learn Rust for use in embedded projects. One of the things that I sometimes return to when learning a new language where it's hard to immediately dive in is Project Euler. Whenever I do this type of problem, though, I wind up being moderately interested in "code golf" with ever-smaller answers. I have a love/hate relationship with code golf: I appreciate the clever answers that folks come up with in languages that I also use, and I come away learning new things. I always harbor a small resentment, though, toward wielders of languages optimized for code golf because it feels a bit like cheating. Here's one example of a golf language that solves the first Project Euler problem: If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000. Response by user bxfbxf: Code in Stax ( 9 bytes): n++e<