Mohamed Emad Fathy (mohamed_2004_emad)

Race #10

View Pit Stop page for race #10 by mohamed_2004_emadGhost race

View profile for Mohamed Emad Fathy (mohamed_2004_emad)

Official speed 21.47 wpm (100.05 seconds elapsed during race)
Race Start April 4, 2025 3:40:46pm UTC
Race Finish April 4, 2025 3:42:27pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 10.73
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)());