View Pit Stop page for race #29 by luis_univ — Ghost race
View profile for Luis Alberto Delgado Pinto (luis_univ)
Official speed | 28.05 wpm (76.58 seconds elapsed during race) |
---|---|
Race Start | September 10, 2025 10:19:37pm UTC |
Race Finish | September 10, 2025 10:20:54pm UTC |
Outcome | Win (1 of 8) |
Opponents |
3. souljin99 (24.57 wpm) 6. cris1310 (17.98 wpm) |
Accuracy | 94.0% |
Points | 14.02 |
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)()); |