|
27 | 27 | <th>Solution</th>
|
28 | 28 | <th>Topics</th>
|
29 | 29 | </tr>
|
| 30 | + <tr> |
| 31 | + <td align="center">September 7th</td> |
| 32 | + <td>1155. <a href="https://leetcode.com/problems/number-of-dice-rolls-with-target-sum/">Number of Dice Rolls With Target Sum</a></td> |
| 33 | + <td align="center">$\text{\color{Dandelion}Medium}$</td> |
| 34 | + <td align="center"> |
| 35 | + <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> |
| 36 | + </td> |
| 37 | + <td align="center"> |
| 38 | + <a href="#dynamic-programming">Dynamic Programming</a> |
| 39 | + </td> |
| 40 | + </tr> |
30 | 41 | <tr>
|
31 | 42 | <td align="center">September 6th</td>
|
32 | 43 | <td>1137. <a href="https://leetcode.com/problems/n-th-tribonacci-number/">N-th Tribonacci Number</a></td>
|
|
77 | 88 | <a href="#hash-table">Hash Table</a>
|
78 | 89 | </td>
|
79 | 90 | </tr>
|
80 |
| - <tr> |
81 |
| - <td align="center">September 2nd</td> |
82 |
| - <td>923. <a href="https://leetcode.com/problems/3sum-with-multiplicity/">3Sum With Multiplicity</a></td> |
83 |
| - <td align="center">$\text{\color{Dandelion}Medium}$</td> |
84 |
| - <td align="center"> |
85 |
| - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Counting.java">Counting</a> |
86 |
| - </td> |
87 |
| - <td align="center"> |
88 |
| - <a href="#array">Array</a>, |
89 |
| - <a href="#counting">Counting</a> |
90 |
| - </td> |
91 |
| - </tr> |
92 | 91 | </table>
|
93 | 92 | </br>
|
94 | 93 | <hr>
|
|
4341 | 4340 | </td>
|
4342 | 4341 | <td></td>
|
4343 | 4342 | </tr>
|
| 4343 | + <tr> |
| 4344 | + <td align="center">1155</td> |
| 4345 | + <td><a href="https://leetcode.com/problems/number-of-dice-rolls-with-target-sum/">Number of Dice Rolls With Target Sum</a></td> |
| 4346 | + <td align="center">Java with Dynamic Programming using |
| 4347 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/1155.%20Number%20of%20Dice%20Rolls%20With%20Target%20Sum/NumberOfDiceRollsWithTargetSum_Tabulation.java">Tabulation</a> |
| 4348 | + </td> |
| 4349 | + <td align="center">$\text{\color{Dandelion}Medium}$</td> |
| 4350 | + <td align="center"> |
| 4351 | + <a href="#dynamic-programming">Dynamic Programming</a> |
| 4352 | + </td> |
| 4353 | + <td></td> |
| 4354 | + </tr> |
4344 | 4355 | <tr>
|
4345 | 4356 | <td align="center">1578</td>
|
4346 | 4357 | <td><a href="https://leetcode.com/problems/minimum-time-to-make-rope-colorful/">Minimum Time to Make Rope Colorful</a></td>
|
|
0 commit comments