aadithebest (aadithebeast)

Race #145

View Pit Stop page for race #145 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 26.04 wpm (82.49 seconds elapsed during race)
Race Start July 8, 2025 10:40:40am UTC
Race Finish July 8, 2025 10:42:02am UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 13.02
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)());