Walter Camacho (waltercs07)

Race #246

View Pit Stop page for race #246 by waltercs07Ghost race

View profile for Walter Camacho (waltercs07)

Official speed 31.98 wpm (67.17 seconds elapsed during race)
Race Start May 26, 2025 4:17:34pm UTC
Race Finish May 26, 2025 4:18:41pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 15.99
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)());