mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-03 19:03:42 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
66 lines
1.4 KiB
Python
66 lines
1.4 KiB
Python
"""
|
|
File: iteration.py
|
|
Created Time: 2023-08-24
|
|
Author: krahets (krahets@163.com)
|
|
"""
|
|
|
|
|
|
def for_loop(n: int) -> int:
|
|
"""for loop"""
|
|
res = 0
|
|
# Sum 1, 2, ..., n-1, n
|
|
for i in range(1, n + 1):
|
|
res += i
|
|
return res
|
|
|
|
|
|
def while_loop(n: int) -> int:
|
|
"""while loop"""
|
|
res = 0
|
|
i = 1 # Initialize condition variable
|
|
# Sum 1, 2, ..., n-1, n
|
|
while i <= n:
|
|
res += i
|
|
i += 1 # Update condition variable
|
|
return res
|
|
|
|
|
|
def while_loop_ii(n: int) -> int:
|
|
"""while loop (two updates)"""
|
|
res = 0
|
|
i = 1 # Initialize condition variable
|
|
# Sum 1, 4, 10, ...
|
|
while i <= n:
|
|
res += i
|
|
# Update condition variable
|
|
i += 1
|
|
i *= 2
|
|
return res
|
|
|
|
|
|
def nested_for_loop(n: int) -> str:
|
|
"""Nested for loop"""
|
|
res = ""
|
|
# Loop i = 1, 2, ..., n-1, n
|
|
for i in range(1, n + 1):
|
|
# Loop j = 1, 2, ..., n-1, n
|
|
for j in range(1, n + 1):
|
|
res += f"({i}, {j}), "
|
|
return res
|
|
|
|
|
|
"""Driver Code"""
|
|
if __name__ == "__main__":
|
|
n = 5
|
|
res = for_loop(n)
|
|
print(f"\nSum result of for loop res = {res}")
|
|
|
|
res = while_loop(n)
|
|
print(f"\nSum result of while loop res = {res}")
|
|
|
|
res = while_loop_ii(n)
|
|
print(f"\nSum result of while loop (two updates) res = {res}")
|
|
|
|
res = nested_for_loop(n)
|
|
print(f"\nTraversal result of nested for loop {res}")
|