Skip to content

Instantly share code, notes, and snippets.

@etaf
Created August 1, 2019 06:12
Show Gist options
  • Save etaf/1276cc9c843cd625bb7b58048dc63036 to your computer and use it in GitHub Desktop.
Save etaf/1276cc9c843cd625bb7b58048dc63036 to your computer and use it in GitHub Desktop.
Leetcode io speedup
const static auto ioSpeedUp = [](){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
return NULL;
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment