View Pit Stop page for race #188 by aadithebeast — Ghost race
View profile for aadithebest (aadithebeast)
Official speed | 26.99 wpm (79.59 seconds elapsed during race) |
---|---|
Race Start | August 19, 2025 4:42:08am UTC |
Race Finish | August 19, 2025 4:43:28am UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 13.50 |
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)()); |