aadithebest (aadithebeast)

Race #169

View Pit Stop page for race #169 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 26.85 wpm (80.00 seconds elapsed during race)
Race Start August 2, 2025 11:39:39am UTC
Race Finish August 2, 2025 11:40:59am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 13.43
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)());