HCMUS (aphongz_)

Race #27

View Pit Stop page for race #27 by aphongz_Ghost race

View profile for HCMUS (aphongz_)

Official speed 34.87 wpm (61.60 seconds elapsed during race)
Race Start July 8, 2025 6:09:22pm UTC
Race Finish July 8, 2025 6:10:24pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 17.43
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)());