Skip to content

Instantly share code, notes, and snippets.

@hvariant
Created December 30, 2018 13:19
Show Gist options
  • Select an option

  • Save hvariant/ea3e3589e7aaeb757daa238ce91a10a1 to your computer and use it in GitHub Desktop.

Select an option

Save hvariant/ea3e3589e7aaeb757daa238ce91a10a1 to your computer and use it in GitHub Desktop.
Leetcode speedup trick
static const auto io_sync_off = []()
{
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout.tie(nullptr);
return nullptr;
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment