Update README.md
Browse files
README.md
CHANGED
|
@@ -11,9 +11,8 @@ widget:
|
|
| 11 |
- text: "
|
| 12 |
# Given an array of integers, return indices of the two numbers such that they add up to a specific target
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
```
|
| 17 |
"
|
| 18 |
example_title: "Twosum problem"
|
| 19 |
---
|
|
|
|
| 11 |
- text: "
|
| 12 |
# Given an array of integers, return indices of the two numbers such that they add up to a specific target
|
| 13 |
|
| 14 |
+
|
| 15 |
+
def twoSum(array, target) -> List[int]:
|
|
|
|
| 16 |
"
|
| 17 |
example_title: "Twosum problem"
|
| 18 |
---
|