|
27 | 27 | <th>Solution</th>
|
28 | 28 | <th>Topics</th>
|
29 | 29 | </tr>
|
| 30 | + <tr> |
| 31 | + <td align="center">September 12th</td> |
| 32 | + <td>2006. <a href="https://leetcode.com/problems/count-number-of-pairs-with-absolute-difference-k/">Count Number of Pairs With Absolute Difference K</a></td> |
| 33 | + <td align="center">$\text{\color{TealBlue}Easy}$</td> |
| 34 | + <td align="center"> |
| 35 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK_HashTable.java">Hash Table</a> |
| 36 | + </td> |
| 37 | + <td align="center"> |
| 38 | + <a href="#array">Array</a>, |
| 39 | + <a href="#hash-table">Hash Table</a> |
| 40 | + </td> |
| 41 | + </tr> |
30 | 42 | <tr>
|
31 | 43 | <td align="center">September 11th</td>
|
32 | 44 | <td>2006. <a href="https://leetcode.com/problems/count-number-of-pairs-with-absolute-difference-k/">Count Number of Pairs With Absolute Difference K</a></td>
|
|
74 | 86 | <a href="#dynamic-programming">Dynamic Programming</a>
|
75 | 87 | </td>
|
76 | 88 | </tr>
|
77 |
| - <tr> |
78 |
| - <td align="center">September 7th</td> |
79 |
| - <td>1155. <a href="https://leetcode.com/problems/number-of-dice-rolls-with-target-sum/">Number of Dice Rolls With Target Sum</a></td> |
80 |
| - <td align="center">$\text{\color{Dandelion}Medium}$</td> |
81 |
| - <td align="center"> |
82 |
| - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/1155.%20Number%20of%20Dice%20Rolls%20With%20Target%20Sum/NumberOfDiceRollsWithTargetSum_Tabulation.java">Dynamic Programming - Tabulation</a> |
83 |
| - </td> |
84 |
| - <td align="center"> |
85 |
| - <a href="#dynamic-programming">Dynamic Programming</a> |
86 |
| - </td> |
87 |
| - </tr> |
88 | 89 | </table>
|
89 | 90 | </br>
|
90 | 91 | <hr>
|
|
1565 | 1566 | <td align="center">2006</td>
|
1566 | 1567 | <td><a href="https://leetcode.com/problems/count-number-of-pairs-with-absolute-difference-k/">Count Number of Pairs With Absolute Difference K</a></td>
|
1567 | 1568 | <td align="center">Java with
|
1568 |
| - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK.java">Brute Force</a> or |
1569 |
| - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK_Counting.java">Counting</a> |
| 1569 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK.java">Brute Force</a>, |
| 1570 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK_Counting.java">Counting</a> or |
| 1571 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK_HashTable.java">Hash Table</a> |
1570 | 1572 | </td>
|
1571 | 1573 | <td align="center">$\text{\color{TealBlue}Easy}$</td>
|
1572 | 1574 | <td align="center">
|
1573 | 1575 | <a href="#array">Array</a>,
|
1574 |
| - <a href="#counting">Counting</a> |
| 1576 | + <a href="#counting">Counting</a>, |
| 1577 | + <a href="#hash-table">Hash Table</a> |
1575 | 1578 | </td>
|
1576 | 1579 | <td></td>
|
1577 | 1580 | </tr>
|
|
3383 | 3386 | <td align="center">$\text{\color{TealBlue}Easy}$</td>
|
3384 | 3387 | <td align="center">
|
3385 | 3388 | <a href="#array">Array</a>,
|
3386 |
| - <a href="#counting">Counting</a> |
| 3389 | + <a href="#counting">Counting</a>, |
| 3390 | + <a href="#hash-table">Hash Table</a> |
3387 | 3391 | </td>
|
3388 | 3392 | <td>Solution Using
|
3389 |
| - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK.java"><em>Brute Force Approach</em></a> |
| 3393 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK.java"><em>Brute Force Approach</em></a> or |
| 3394 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK_HashTable.java"><em>Hash Table</em></a> |
3390 | 3395 | </td>
|
3391 | 3396 | </tr>
|
3392 | 3397 | <tr>
|
|
5554 | 5559 | </td>
|
5555 | 5560 | <td></td>
|
5556 | 5561 | </tr>
|
| 5562 | + <tr> |
| 5563 | + <td align="center">2006</td> |
| 5564 | + <td><a href="https://leetcode.com/problems/count-number-of-pairs-with-absolute-difference-k/">Count Number of Pairs With Absolute Difference K</a></td> |
| 5565 | + <td align="center"> |
| 5566 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK_HashTable.java">Java</a> |
| 5567 | + </td> |
| 5568 | + <td align="center">$\text{\color{TealBlue}Easy}$</td> |
| 5569 | + <td align="center"> |
| 5570 | + <a href="#array">Array</a>, |
| 5571 | + <a href="#counting">Counting</a>, |
| 5572 | + <a href="#hash-table">Hash Table</a> |
| 5573 | + </td> |
| 5574 | + <td>Solution Using |
| 5575 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK.java"><em>Brute Force</em></a>, |
| 5576 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK_Counting.java"><em>Counting</em></a> |
| 5577 | + </td> |
| 5578 | + </tr> |
5557 | 5579 | <tr>
|
5558 | 5580 | <td align="center">2007</td>
|
5559 | 5581 | <td><a href="https://leetcode.com/problems/find-original-array-from-doubled-array/">Find Original Array From Doubled Array</a></td>
|
|
0 commit comments