I'm feeling board at work and need to write some interesting code. Anyone have any good project suggestions that would take about 4 days? Maybe something in C? Maybe something numeric-algorithm-y? Idk, open to any ideas.
I'm feeling board at work and need to write some interesting code. Anyone have any good project suggestions that would take about 4 days? Maybe something in C? Maybe something numeric-algorithm-y? Idk, open to any ideas.
i implemented square root from scratch recently and it was pretty fun! no way to compete with sqrt() on speed unfortunately since it typically compiles down to a single instruction (on x86 at least), but the algorithm itself and nailing the precision is neat!