Gerar Quispe (gquispe)

Race #100

View Pit Stop page for race #100 by gquispeGhost race

View profile for Gerar Quispe (gquispe)

Official speed 30.67 wpm (70.04 seconds elapsed during race)
Race Start November 20, 2025 12:01:47am UTC
Race Finish November 20, 2025 12:02:57am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 15.34
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)());