aadithebest (aadithebeast)

Race #79

View Pit Stop page for race #79 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 20.62 wpm (104.17 seconds elapsed during race)
Race Start June 30, 2025 5:17:12pm UTC
Race Finish June 30, 2025 5:18:56pm UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 10.31
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)());