HCMUS (aphongz_)

Race #20

View Pit Stop page for race #20 by aphongz_Ghost race

View profile for HCMUS (aphongz_)

Official speed 35.46 wpm (60.58 seconds elapsed during race)
Race Start July 8, 2025 5:45:44pm UTC
Race Finish July 8, 2025 5:46:45pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 17.73
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)());