Created
March 22, 2020 11:54
-
-
Save xkumiyu/a91880f48004f4c958b16ae516de308c to your computer and use it in GitHub Desktop.
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
# for _ in range(N) | |
for _ in range(N): | |
pass | |
# for i in range(N) | |
for i in range(N): | |
i | |
# while i < N | |
i = 0 | |
while i < N: | |
i += 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment