Created
August 11, 2020 16:26
-
-
Save sudo-panda/734f2a4c3c23741530a237ba427747a8 to your computer and use it in GitHub Desktop.
C++ tips to get around TLE : xample predicate function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bool is_zero(int i) | |
| { | |
| return i == 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment