Shaileshbhai Chaudhari (shailesh0301)

Race #39

View Pit Stop page for race #39 by shailesh0301Ghost race

View profile for Shaileshbhai Chaudhari (shailesh0301)

Official speed 35.88 wpm (59.87 seconds elapsed during race)
Race Start February 6, 2024 9:30:22am UTC
Race Finish February 6, 2024 9:31:22am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 17.94
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)());