Skip to content

Commit 60ad9a3

Browse files
committed
Create README - LeetHub
1 parent 6bc6ed7 commit 60ad9a3

File tree

1 file changed

+41
-0
lines changed
  • 167-two-sum-ii-input-array-is-sorted

1 file changed

+41
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<h2><a href="https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/">167. Two Sum II - Input Array Is Sorted</a></h2><h3>Medium</h3><hr><div><p>Given a <strong>1-indexed</strong> array of integers <code>numbers</code> that is already <strong><em>sorted in non-decreasing order</em></strong>, find two numbers such that they add up to a specific <code>target</code> number. Let these two numbers be <code>numbers[index<sub>1</sub>]</code> and <code>numbers[index<sub>2</sub>]</code> where <code>1 &lt;= index<sub>1</sub> &lt; index<sub>2</sub> &lt;= numbers.length</code>.</p>
2+
3+
<p>Return<em> the indices of the two numbers, </em><code>index<sub>1</sub></code><em> and </em><code>index<sub>2</sub></code><em>, <strong>added by one</strong> as an integer array </em><code>[index<sub>1</sub>, index<sub>2</sub>]</code><em> of length 2.</em></p>
4+
5+
<p>The tests are generated such that there is <strong>exactly one solution</strong>. You <strong>may not</strong> use the same element twice.</p>
6+
7+
<p>Your solution must use only constant extra space.</p>
8+
9+
<p>&nbsp;</p>
10+
<p><strong>Example 1:</strong></p>
11+
12+
<pre><strong>Input:</strong> numbers = [<u>2</u>,<u>7</u>,11,15], target = 9
13+
<strong>Output:</strong> [1,2]
14+
<strong>Explanation:</strong> The sum of 2 and 7 is 9. Therefore, index<sub>1</sub> = 1, index<sub>2</sub> = 2. We return [1, 2].
15+
</pre>
16+
17+
<p><strong>Example 2:</strong></p>
18+
19+
<pre><strong>Input:</strong> numbers = [<u>2</u>,3,<u>4</u>], target = 6
20+
<strong>Output:</strong> [1,3]
21+
<strong>Explanation:</strong> The sum of 2 and 4 is 6. Therefore index<sub>1</sub> = 1, index<sub>2</sub> = 3. We return [1, 3].
22+
</pre>
23+
24+
<p><strong>Example 3:</strong></p>
25+
26+
<pre><strong>Input:</strong> numbers = [<u>-1</u>,<u>0</u>], target = -1
27+
<strong>Output:</strong> [1,2]
28+
<strong>Explanation:</strong> The sum of -1 and 0 is -1. Therefore index<sub>1</sub> = 1, index<sub>2</sub> = 2. We return [1, 2].
29+
</pre>
30+
31+
<p>&nbsp;</p>
32+
<p><strong>Constraints:</strong></p>
33+
34+
<ul>
35+
<li><code>2 &lt;= numbers.length &lt;= 3 * 10<sup>4</sup></code></li>
36+
<li><code>-1000 &lt;= numbers[i] &lt;= 1000</code></li>
37+
<li><code>numbers</code> is sorted in <strong>non-decreasing order</strong>.</li>
38+
<li><code>-1000 &lt;= target &lt;= 1000</code></li>
39+
<li>The tests are generated such that there is <strong>exactly one solution</strong>.</li>
40+
</ul>
41+
</div>

0 commit comments

Comments
 (0)