vloek (tikpyp)

Race #443

View Pit Stop page for race #443 by tikpypGhost race

View profile for vloek (tikpyp)

Official speed 49.48 wpm (43.41 seconds elapsed during race)
Race Start August 31, 2025 6:45:16pm UTC
Race Finish August 31, 2025 6:46:00pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 24.74
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)());