FITRI (slowfinger22)

Race #4

View Pit Stop page for race #4 by slowfinger22Ghost race

View profile for FITRI (slowfinger22)

Official speed 25.87 wpm (83.03 seconds elapsed during race)
Race Start February 1, 2025 7:53:35am UTC
Race Finish February 1, 2025 7:54:58am UTC
Outcome No win (3 of 3)
Accuracy 89.0%
Points 12.93
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)());