View Pit Stop page for race #26 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 42.18 wpm (50.92 seconds elapsed during race) |
---|---|
Race Start | July 1, 2025 3:59:20am UTC |
Race Finish | July 1, 2025 4:00:11am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 21.09 |
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)()); |