Skip to content

Commit 45bdaba

Browse files
authored
Update two_num.py
refactor: improve two_sum function with enhanced error handling, type hinting, and output clarity - Replaced Union with Optional for clearer type hinting - Added input validation for empty lists and non-integer values - Improved error handling with informative exceptions - Enhanced result display to include matched values alongside indices - Applied PEP 8 style improvements for better readability
1 parent be41df5 commit 45bdaba

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

two_num.py

+14-13
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
[0, 1]
1515
"""
1616

17-
from typing import List, Union
17+
from typing import List, Optional
1818

19-
def two_sum(nums: List[int], target: int) -> Union[List[int], bool]:
19+
def two_sum(nums: List[int], target: int) -> Optional[List[int]]:
2020
"""
2121
Finds indices of two numbers in 'nums' that add up to 'target'.
2222
@@ -25,33 +25,34 @@ def two_sum(nums: List[int], target: int) -> Union[List[int], bool]:
2525
target (int): Target sum.
2626
2727
Returns:
28-
List[int]: Indices of the two numbers that add up to the target.
29-
False: If no such pair is found.
28+
Optional[List[int]]: Indices of the two numbers that add up to the target,
29+
or None if no such pair is found.
3030
"""
31+
if len(nums) < 2:
32+
raise ValueError("Input list must contain at least two numbers.")
33+
34+
if not all(isinstance(num, int) for num in nums):
35+
raise TypeError("All elements in the list must be integers.")
36+
3137
# Dictionary to track seen values and their indices
3238
seen_values = {}
3339

3440
for index, value in enumerate(nums):
3541
complement = target - value
36-
37-
# Check if the complement exists in the dictionary
3842
if complement in seen_values:
3943
return [seen_values[complement], index]
40-
41-
# Add current value to dictionary for future reference
4244
seen_values[value] = index
4345

44-
# Return False if no pair is found (explicit is better than implicit)
45-
return False
46+
return None
4647

4748
# Example usage
4849
if __name__ == "__main__":
4950
example_nums = [2, 7, 11, 15]
5051
example_target = 9
5152
result = two_sum(example_nums, example_target)
52-
53-
# Clean, professional result display
53+
5454
if result:
55-
print(f"Indices that add up to {example_target}: {result}")
55+
num1, num2 = example_nums[result[0]], example_nums[result[1]]
56+
print(f"Indices that add up to {example_target}: {result} (Values: {num1} + {num2})")
5657
else:
5758
print(f"No combination found that adds up to {example_target}.")

0 commit comments

Comments
 (0)