mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-23 01:10:06 +08:00
Format python codes with black. (#453)
This commit is contained in:
@ -4,8 +4,9 @@ Created Time: 2022-11-25
|
||||
Author: Krahets (krahets@163.com)
|
||||
"""
|
||||
|
||||
|
||||
def two_sum_brute_force(nums: list[int], target: int) -> list[int]:
|
||||
""" 方法一:暴力枚举 """
|
||||
"""方法一:暴力枚举"""
|
||||
# 两层循环,时间复杂度 O(n^2)
|
||||
for i in range(len(nums) - 1):
|
||||
for j in range(i + 1, len(nums)):
|
||||
@ -13,8 +14,9 @@ def two_sum_brute_force(nums: list[int], target: int) -> list[int]:
|
||||
return [i, j]
|
||||
return []
|
||||
|
||||
|
||||
def two_sum_hash_table(nums: list[int], target: int) -> list[int]:
|
||||
""" 方法二:辅助哈希表 """
|
||||
"""方法二:辅助哈希表"""
|
||||
# 辅助哈希表,空间复杂度 O(n)
|
||||
dic = {}
|
||||
# 单层循环,时间复杂度 O(n)
|
||||
@ -26,11 +28,11 @@ def two_sum_hash_table(nums: list[int], target: int) -> list[int]:
|
||||
|
||||
|
||||
""" Driver Code """
|
||||
if __name__ == '__main__':
|
||||
if __name__ == "__main__":
|
||||
# ======= Test Case =======
|
||||
nums = [2,7,11,15]
|
||||
nums = [2, 7, 11, 15]
|
||||
target = 9
|
||||
|
||||
|
||||
# ====== Driver Code ======
|
||||
# 方法一
|
||||
res: list[int] = two_sum_brute_force(nums, target)
|
||||
|
Reference in New Issue
Block a user