aadithebest (aadithebeast)

Race #94

View Pit Stop page for race #94 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 28.06 wpm (76.55 seconds elapsed during race)
Race Start July 1, 2025 10:35:00am UTC
Race Finish July 1, 2025 10:36:17am UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 14.03
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)());