Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Approach 3: Use BufReader (Time: 137s)
In this approach we use a Bufreader to read the file. This gave us a huge boost in the time because: * In the previous approach, every line was being converted to String but in BufReader, the iterator we get is itself a string - Maybe that's why we no longer see the `to_string` in flamegraph
- Loading branch information