bhushan (bhushan_144)

Race #5

View Pit Stop page for race #5 by bhushan_144Ghost race

View profile for bhushan (bhushan_144)

Official speed 22.49 wpm (95.51 seconds elapsed during race)
Race Start July 7, 2025 3:43:44pm UTC
Race Finish July 7, 2025 3:45:19pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 11.24
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)());