aadithebest (aadithebeast)

Race #299

View Pit Stop page for race #299 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 34.68 wpm (61.94 seconds elapsed during race)
Race Start October 24, 2025 11:31:56am UTC
Race Finish October 24, 2025 11:32:58am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 17.34
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)());