|
27 | 27 | <th>Solution</th>
|
28 | 28 | <th>Topics</th>
|
29 | 29 | </tr>
|
| 30 | + <tr> |
| 31 | + <td align="center">September 10th</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.java">Brute Force</a> |
| 36 | + </td> |
| 37 | + <td align="center"> |
| 38 | + <a href="#array">Array</a> |
| 39 | + </td> |
| 40 | + </tr> |
30 | 41 | <tr>
|
31 | 42 | <td align="center">September 9th</td>
|
32 | 43 | <td>2028. <a href="https://leetcode.com/problems/find-missing-observations/">Find Missing Observations</a></td>
|
|
75 | 86 | <a href="#memoization">Memoization</a>
|
76 | 87 | </td>
|
77 | 88 | </tr>
|
78 |
| - <tr> |
79 |
| - <td align="center">September 5th</td> |
80 |
| - <td>1137. <a href="https://leetcode.com/problems/n-th-tribonacci-number/">N-th Tribonacci Number</a></td> |
81 |
| - <td align="center">$\text{\color{TealBlue}Easy}$</td> |
82 |
| - <td align="center"> |
83 |
| - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/1137.%20N-th%20Tribonacci%20Number/NthTribonacciNumber_Iterative.java">Dynamic Programming</a> |
84 |
| - </td> |
85 |
| - <td align="center"> |
86 |
| - <a href="#dynamic-programming">Dynamic Programming</a>, |
87 |
| - <a href="#math">Math</a> |
88 |
| - </td> |
89 |
| - </tr> |
90 | 89 | </table>
|
91 | 90 | </br>
|
92 | 91 | <hr>
|
|
1563 | 1562 | <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/1995.%20Count%20Special%20Quadruplets/CountSpecialQuadruplets_HashTable.java"><em>Hash Table</em></a>
|
1564 | 1563 | </td>
|
1565 | 1564 | </tr>
|
| 1565 | + <tr> |
| 1566 | + <td align="center">2006</td> |
| 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> |
| 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> |
| 1570 | + </td> |
| 1571 | + <td align="center">$\text{\color{TealBlue}Easy}$</td> |
| 1572 | + <td align="center"> |
| 1573 | + <a href="#array">Array</a> |
| 1574 | + </td> |
| 1575 | + <td></td> |
| 1576 | + </tr> |
1566 | 1577 | <tr>
|
1567 | 1578 | <td align="center">2007</td>
|
1568 | 1579 | <td><a href="https://leetcode.com/problems/find-original-array-from-doubled-array/">Find Original Array From Doubled Array</a></td>
|
|
0 commit comments