Pitchapa (purelightberrry)

Race #4

View Pit Stop page for race #4 by purelightberrryGhost race

View profile for Pitchapa (purelightberrry)

Official speed 29.03 wpm (73.99 seconds elapsed during race)
Race Start May 9, 2025 3:17:10am UTC
Race Finish May 9, 2025 3:18:24am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 14.52
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)());