View Pit Stop page for race #1 by steveonalex — Ghost race
View profile for SteveOnAlex (steveonalex)
Official speed | 48.38 wpm (44.40 seconds elapsed during race) |
---|---|
Race Start | March 2, 2024 9:53:38am UTC |
Race Finish | March 2, 2024 9:54:22am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. thieunguyenhuy (52.75 wpm) 3. nhoksocqt1 (36.85 wpm) 5. billyisme (28.61 wpm) |
Accuracy | 96.0% |
Points | 24.19 |
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)()); |