Alexander Hans
Alexander Hans
Opened a PR for `pop-count` as well since it was so trivial.
Put me down for yacht. I will probably get around to implement something next week.
This was quicker than expected: https://github.com/exercism/c/pull/972
I also gave rotational-cipher a shot: https://github.com/exercism/c/pull/975
Feel free to also put me down for dnd-character and food-chain.
About parallel-letter-frequency and bank-account, I wonder what approaches we want to support there, since both are about some form of parallelism and there's nothing in the C standard (library) to...
Alright, implementing bank-account without the parallel aspect is probably fine. That's what the Python track does. The C++ track expects proper locking and has a test that spawns multiple threads,...
I can have a look at `parallel-letter-frequency`. There are a couple of options for implementing this. I would consider using something from the algorithms library together with a parallel execution...
Here goes a (draft) PR for `parallel-letter-frequency`: #800 Need some feedback to finish it up. Details in PR. Thanks!
I will give spiral-matrix a go!