ali_ahmed (ali_ahemd2477)

Race #27

View Pit Stop page for race #27 by ali_ahemd2477Ghost race

View profile for ali_ahmed (ali_ahemd2477)

Official speed 13.68 wpm (157.02 seconds elapsed during race)
Race Start December 29, 2024 4:38:56pm UTC
Race Finish December 29, 2024 4:41:33pm UTC
Outcome No win (3 of 3)
Accuracy 86.0%
Points 6.84
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)());