|
27 | 27 | <th>Solution</th>
|
28 | 28 | <th>Topics</th>
|
29 | 29 | </tr>
|
| 30 | + <tr> |
| 31 | + <td align="center">September 11th</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_Counting.java">Counting</a> |
| 36 | + </td> |
| 37 | + <td align="center"> |
| 38 | + <a href="#array">Array</a>, |
| 39 | + <a href="#counting">Counting</a> |
| 40 | + </td> |
| 41 | + </tr> |
30 | 42 | <tr>
|
31 | 43 | <td align="center">September 10th</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>
|
|
73 | 85 | <a href="#dynamic-programming">Dynamic Programming</a>
|
74 | 86 | </td>
|
75 | 87 | </tr>
|
76 |
| - <tr> |
77 |
| - <td align="center">September 6th</td> |
78 |
| - <td>1137. <a href="https://leetcode.com/problems/n-th-tribonacci-number/">N-th Tribonacci Number</a></td> |
79 |
| - <td align="center">$\text{\color{TealBlue}Easy}$</td> |
80 |
| - <td align="center"> |
81 |
| - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/1137.%20N-th%20Tribonacci%20Number/NthTribonacciNumber_Recursive.java">Dynamic Programming - Memoization</a> |
82 |
| - </td> |
83 |
| - <td align="center"> |
84 |
| - <a href="#dynamic-programming">Dynamic Programming</a>, |
85 |
| - <a href="#math">Math</a>, |
86 |
| - <a href="#memoization">Memoization</a> |
87 |
| - </td> |
88 |
| - </tr> |
89 | 88 | </table>
|
90 | 89 | </br>
|
91 | 90 | <hr>
|
|
1565 | 1564 | <tr>
|
1566 | 1565 | <td align="center">2006</td>
|
1567 | 1566 | <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>
|
1568 |
| - <td align="center"> |
1569 |
| - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK.java">Java</a> |
| 1567 | + <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> |
1570 | 1570 | </td>
|
1571 | 1571 | <td align="center">$\text{\color{TealBlue}Easy}$</td>
|
1572 | 1572 | <td align="center">
|
1573 |
| - <a href="#array">Array</a> |
| 1573 | + <a href="#array">Array</a>, |
| 1574 | + <a href="#counting">Counting</a> |
1574 | 1575 | </td>
|
1575 | 1576 | <td></td>
|
1576 | 1577 | </tr>
|
|
3373 | 3374 | </td>
|
3374 | 3375 | <td></td>
|
3375 | 3376 | </tr>
|
| 3377 | + <tr> |
| 3378 | + <td align="center">2006</td> |
| 3379 | + <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> |
| 3380 | + <td align="center"> |
| 3381 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/2006.%20Count%20Number%20of%20Pairs%20With%20Absolute%20Difference%20K/CountNumberOfPairsWithAbsoluteDifferenceK_Counting.java">Java</a> |
| 3382 | + </td> |
| 3383 | + <td align="center">$\text{\color{TealBlue}Easy}$</td> |
| 3384 | + <td align="center"> |
| 3385 | + <a href="#array">Array</a>, |
| 3386 | + <a href="#counting">Counting</a> |
| 3387 | + </td> |
| 3388 | + <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> |
| 3390 | + </td> |
| 3391 | + </tr> |
3376 | 3392 | <tr>
|
3377 | 3393 | <td align="center">2131</td>
|
3378 | 3394 | <td><a href="https://leetcode.com/problems/longest-palindrome-by-concatenating-two-letter-words/">Longest Palindrome by Concatenating Two Letter Words</a></td>
|
|
0 commit comments