Avighna Chhatrapati

Results 4 issues of Avighna Chhatrapati

I have tested this on latest bleeding edge version (pulled the source and compiled myself), and it, unfortunately, fails to display them correctly. # JSON file test.json: ```json { "add_fraction":...

On a normal Linux command line, Alt+Backspace erases an entire word. Supporting that would be a nice enhancement.

enhancement

This PR addresses [#187](https://github.com/atcoder/ac-library/issues/187) by replacing the loop-based implementation of bit_ceil with a constant-time version. Let me know if everything looks okay.

Currently, the `bit_ceil` function is implemented as: ```cpp unsigned int bit_ceil(unsigned int n) { unsigned int x = 1; while (x < (unsigned int)(n)) x *= 2; return x; }...