Carlos Mauricio Riverin Vasquez (mau_r123)

Race #5

View Pit Stop page for race #5 by mau_r123Ghost race

View profile for Carlos Mauricio Riverin Vasquez (mau_r123)

Official speed 24.35 wpm (88.21 seconds elapsed during race)
Race Start May 8, 2025 1:24:26am UTC
Race Finish May 8, 2025 1:25:54am UTC
Outcome No win (5 of 20)
Opponents 2. fanor (27.77 wpm)
3. erick0334 (27.29 wpm)
6. alvaroricaldi (22.49 wpm)
7. fa1progra (22.03 wpm)
Accuracy 94.0%
Points 12.18
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)());