Roberto Valenzuela

Results 4 issues of Roberto Valenzuela

Enable meta-freertos to run on a RISC-V board.

Saw this project on Hacker News and I think it's such an impressive work! Here's a small request change with a typo fix.

Fixes https://github.com/yangshun/tech-interview-handbook/issues/677

In the [Binary Techniques](https://www.techinterviewhandbook.org/algorithms/binary/#techniques) section of the repository, the code example for "Set kth Bit" contains an error. The current code is written as: ``` num |= (1 >> k);...