ali_ahmed (ali_ahemd2477)

Race #46

View Pit Stop page for race #46 by ali_ahemd2477Ghost race

View profile for ali_ahmed (ali_ahemd2477)

Official speed 22.70 wpm (94.63 seconds elapsed during race)
Race Start July 31, 2025 12:47:58pm UTC
Race Finish July 31, 2025 12:49:33pm UTC
Outcome No win (2 of 3)
Accuracy 90.0%
Points 11.35
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)());