Cube_123 (cube_123)

Race #8

View Pit Stop page for race #8 by cube_123Ghost race

View profile for Cube_123 (cube_123)

Official speed 19.07 wpm (112.64 seconds elapsed during race)
Race Start May 25, 2025 2:15:30pm UTC
Race Finish May 25, 2025 2:17:23pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 9.54
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)());