samiraarancibia (samiraarancibia123426)

Race #38

View Pit Stop page for race #38 by samiraarancibia123426Ghost race

View profile for samiraarancibia (samiraarancibia123426)

Official speed 23.70 wpm (90.63 seconds elapsed during race)
Race Start May 30, 2025 1:16:46am UTC
Race Finish May 30, 2025 1:18:17am UTC
Outcome No win (6 of 16)
Opponents 1. jas_el (29.90 wpm)
5. sharick_chungara (25.08 wpm)
7. tocsky (22.87 wpm)
8. pedro_serrudo (21.81 wpm)
Accuracy 90.0%
Points 11.85
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)());