Bob (ryokucha)

Race #3

View Pit Stop page for race #3 by ryokuchaGhost race

View profile for Bob (ryokucha)

Official speed 57.20 wpm (37.55 seconds elapsed during race)
Race Start August 22, 2025 2:42:17pm UTC
Race Finish August 22, 2025 2:42:54pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 28.60
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)());