harsh_pro (andhbhakth)

Race #2

View Pit Stop page for race #2 by andhbhakthGhost race

View profile for harsh_pro (andhbhakth)

Official speed 28.13 wpm (76.36 seconds elapsed during race)
Race Start July 24, 2025 4:41:32am UTC
Race Finish July 24, 2025 4:42:49am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 14.06
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)());