Kevin (whisper_go)

Race #1

View Pit Stop page for race #1 by whisper_goGhost race

View profile for Kevin (whisper_go)

Official speed 38.52 wpm (55.76 seconds elapsed during race)
Race Start April 23, 2025 9:06:45am UTC
Race Finish April 23, 2025 9:07:41am UTC
Outcome No win (2 of 3)
Opponents 1. numberman32 (38.63 wpm)
3. k3wi0908 (22.97 wpm)
Accuracy 96.0%
Points 19.26
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)());