Unify the comment style of python codes

This commit is contained in:
krahets
2023-04-09 05:30:02 +08:00
parent 5ddcb60825
commit 10e2180013
53 changed files with 109 additions and 106 deletions

View File

@@ -36,7 +36,7 @@ def binary_search1(nums: list[int], target: int) -> int:
return -1 # 未找到目标元素,返回 -1
""" Driver Code """
"""Driver Code"""
if __name__ == "__main__":
target: int = 6
nums: list[int] = [1, 3, 6, 8, 12, 15, 23, 67, 70, 92]