Ahmed (e_elashra1)

Race #26

View Pit Stop page for race #26 by e_elashra1Ghost race

View profile for Ahmed (e_elashra1)

Official speed 33.41 wpm (64.29 seconds elapsed during race)
Race Start May 18, 2025 12:36:59pm UTC
Race Finish May 18, 2025 12:38:03pm UTC
Outcome No win (2 of 3)
Accuracy 91.0%
Points 16.71
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)());