Gerar Quispe (gquispe)

Race #25

View Pit Stop page for race #25 by gquispeGhost race

View profile for Gerar Quispe (gquispe)

Official speed 31.29 wpm (68.65 seconds elapsed during race)
Race Start March 29, 2025 3:32:59am UTC
Race Finish March 29, 2025 3:34:08am UTC
Outcome No win (3 of 3)
Accuracy 97.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)());