Skip to content

Commit be41df5

Browse files
authored
Updated two_num.py
### Summary Refactored the `two_sum` function to enhance clarity, improve structure, and ensure compliance with Python best practices (PEP 8). This version prioritizes intuitive logic, robust error handling, and clear documentation. ### Key Changes - **Function Renaming:** Renamed `twoSum` to `two_sum` to adhere to PEP 8 standards for function naming. - **Improved Variable Naming:** Replaced ambiguous names (`chk_map`, `compl`) with more intuitive identifiers (`seen_values`, `complement`). - **Added Type Hints:** Introduced `from typing import List, Union` to improve code clarity and provide IDE/linter support. - **Enhanced Docstring:** Expanded the docstring to include detailed function descriptions, argument explanations, and return behavior. - **Robust Return Handling:** Ensured the function explicitly returns `False` if no valid pair is found, improving clarity in edge cases. - **Improved Output Structure:** Added a `__main__` block with structured output for cleaner and more informative result display. ### Rationale These changes improve: - **Readability:** Clearer variable names and enhanced documentation make the code easier to understand for future developers (and my future self). - **Maintainability:** Improved structure provides a stronger foundation for future feature enhancements or modifications. - **Compliance:** Aligns with Python's official best practices for formatting and style (PEP 8).
1 parent 6469a9c commit be41df5

File tree

1 file changed

+50
-19
lines changed

1 file changed

+50
-19
lines changed

two_num.py

+50-19
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,57 @@
1-
"""Author Anurag Kumar (mailto:[email protected])
1+
"""
2+
Author: Anurag Kumar (mailto:[email protected])
23
3-
Given an array of integers, return indices of the two numbers
4-
such that they add up to a specific target.
5-
You may assume that each input would have exactly one solution,
6-
and you may not use the same element twice.
4+
Description:
5+
This function finds two numbers in a given list that add up to a specified target.
6+
It returns the indices of those two numbers.
77
8-
Example:
9-
Given nums = [2, 7, 11, 15], target = 9,
10-
Because nums[0] + nums[1] = 2 + 7 = 9,
11-
return [0, 1].
8+
Constraints:
9+
- Each input will have exactly one solution.
10+
- The same element cannot be used twice.
1211
12+
Example:
13+
>>> two_sum([2, 7, 11, 15], 9)
14+
[0, 1]
1315
"""
1416

17+
from typing import List, Union
18+
19+
def two_sum(nums: List[int], target: int) -> Union[List[int], bool]:
20+
"""
21+
Finds indices of two numbers in 'nums' that add up to 'target'.
22+
23+
Args:
24+
nums (List[int]): List of integers.
25+
target (int): Target sum.
1526
16-
def twoSum(nums, target):
17-
chk_map = {}
18-
for index, val in enumerate(nums):
19-
compl = target - val
20-
if compl in chk_map:
21-
indices = [chk_map[compl], index]
22-
print(indices)
23-
return [indices]
24-
else:
25-
chk_map[val] = index
27+
Returns:
28+
List[int]: Indices of the two numbers that add up to the target.
29+
False: If no such pair is found.
30+
"""
31+
# Dictionary to track seen values and their indices
32+
seen_values = {}
33+
34+
for index, value in enumerate(nums):
35+
complement = target - value
36+
37+
# Check if the complement exists in the dictionary
38+
if complement in seen_values:
39+
return [seen_values[complement], index]
40+
41+
# Add current value to dictionary for future reference
42+
seen_values[value] = index
43+
44+
# Return False if no pair is found (explicit is better than implicit)
2645
return False
46+
47+
# Example usage
48+
if __name__ == "__main__":
49+
example_nums = [2, 7, 11, 15]
50+
example_target = 9
51+
result = two_sum(example_nums, example_target)
52+
53+
# Clean, professional result display
54+
if result:
55+
print(f"Indices that add up to {example_target}: {result}")
56+
else:
57+
print(f"No combination found that adds up to {example_target}.")

0 commit comments

Comments
 (0)