Leonidas (leonidas_the_great)

Race #1

View Pit Stop page for race #1 by leonidas_the_greatGhost race

View profile for Leonidas (leonidas_the_great)

Official speed 22.63 wpm (94.92 seconds elapsed during race)
Race Start September 23, 2024 2:48:58am UTC
Race Finish September 23, 2024 2:50:33am UTC
Outcome Win (1 of 2)
Opponents 2. ayaseshu (21.59 wpm)
Accuracy 92.0%
Points 11.31
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)());