bhushan (bhushan_144)

Race #24

View Pit Stop page for race #24 by bhushan_144Ghost race

View profile for bhushan (bhushan_144)

Official speed 31.29 wpm (68.65 seconds elapsed during race)
Race Start August 23, 2025 4:50:20am UTC
Race Finish August 23, 2025 4:51:28am UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 15.64
Text #10023 (Length: 179 characters)

auto monad = [](auto v) { return [=] { return v; }; }; auto bind = [](auto m) { return [=](auto fvm) { return fvm(m()); }; }; static_assert(bind(monad(2))(monad)() == monad(2)());