We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0580702 commit ea056c6Copy full SHA for ea056c6
0001-two-sum.js
@@ -3,9 +3,11 @@
3
* https://leetcode.com/problems/two-sum/
4
* Difficulty: Easy
5
*
6
- * Given an array of integers `nums` and an integer `target`, return indices of the two numbers such that they add up to `target`.
+ * Given an array of integers `nums` and an integer `target`, return indices
7
+ * of the two numbers such that they add up to `target`.
8
- * You may assume that each input would have exactly one solution, and you may not use the same element twice.
9
+ * You may assume that each input would have exactly one solution, and you
10
+ * may not use the same element twice.
11
12
* You can return the answer in any order.
13
*/
0 commit comments