|
27 | 27 | <th>Solution</th>
|
28 | 28 | <th>Topics</th>
|
29 | 29 | </tr>
|
| 30 | + <tr> |
| 31 | + <td align="center">September 4th</td> |
| 32 | + <td>923. <a href="https://leetcode.com/problems/3sum-with-multiplicity/">3Sum With Multiplicity</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/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Sorting_TwoPointers.java">Sorting & Two Pointers</a> |
| 36 | + </td> |
| 37 | + <td align="center"> |
| 38 | + <a href="#array">Array</a>, |
| 39 | + <a href="#sorting">Sorting</a>, |
| 40 | + <a href="#two-pointers">Two Pointers</a> |
| 41 | + </td> |
| 42 | + </tr> |
30 | 43 | <tr>
|
31 | 44 | <td align="center">September 3rd</td>
|
32 | 45 | <td>923. <a href="https://leetcode.com/problems/3sum-with-multiplicity/">3Sum With Multiplicity</a></td>
|
|
77 | 90 | <a href="#two-pointers">Two Pointers</a>
|
78 | 91 | </td>
|
79 | 92 | </tr>
|
80 | | - <tr> |
81 | | - <td align="center">August 30th</td> |
82 | | - <td>121. <a href="https://leetcode.com/problems/best-time-to-buy-and-sell-stock/">Best Time to Buy and Sell Stock</a></td> |
83 | | - <td align="center">$\text{\color{TealBlue}Easy}$</td> |
84 | | - <td align="center"> |
85 | | - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/121.%20Best%20Time%20to%20Buy%20and%20Sell%20Stock/BestTimeToBuyAndSellStock_DynamicProgramming.java">Dynamic Programming</a> |
86 | | - </td> |
87 | | - <td align="center"> |
88 | | - <a href="#array">Array</a>, |
89 | | - <a href="#dynamic-programming">Dynamic Programming</a> |
90 | | - </td> |
91 | | - </tr> |
92 | | - <tr> |
93 | | - <td align="center">August 29th</td> |
94 | | - <td>121. <a href="https://leetcode.com/problems/best-time-to-buy-and-sell-stock/">Best Time to Buy and Sell Stock</a></td> |
95 | | - <td align="center">$\text{\color{TealBlue}Easy}$</td> |
96 | | - <td align="center"> |
97 | | - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/121.%20Best%20Time%20to%20Buy%20and%20Sell%20Stock/BestTimeToBuyAndSellStock.java">Array</a> |
98 | | - </td> |
99 | | - <td align="center"> |
100 | | - <a href="#array">Array</a> |
101 | | - </td> |
102 | | - </tr> |
103 | 93 | </table>
|
104 | 94 | </br>
|
105 | 95 | <hr>
|
|
967 | 957 | <td align="center">923</td>
|
968 | 958 | <td><a href="https://leetcode.com/problems/3sum-with-multiplicity/">3Sum With Multiplicity</a></td>
|
969 | 959 | <td align="center">Java with
|
970 | | - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Counting.java">Counting</a> or |
971 | | - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_HashTable.java">Hash Table</a> |
| 960 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Counting.java">Counting</a> |
| 961 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_HashTable.java">Hash Table</a> or |
| 962 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Sorting_TwoPointers.java">Sorting & Two Pointers</a> |
972 | 963 | </td>
|
973 | 964 | <td align="center">$\text{\color{Dandelion}Medium}$</td>
|
974 | 965 | <td align="center">
|
975 | 966 | <a href="#array">Array</a>,
|
976 | 967 | <a href="#counting">Counting</a>,
|
977 | | - <a href="#hash-table">Hash Table</a> |
| 968 | + <a href="#hash-table">Hash Table</a>, |
| 969 | + <a href="#sorting">Sorting</a>, |
| 970 | + <a href="#two-pointers">Two Pointers</a> |
978 | 971 | </td>
|
979 | 972 | <td></td>
|
980 | 973 | </tr>
|
|
3306 | 3299 | <td align="center">
|
3307 | 3300 | <a href="#array">Array</a>,
|
3308 | 3301 | <a href="#counting">Counting</a>,
|
3309 | | - <a href="#hash-table">Hash Table</a> |
| 3302 | + <a href="#hash-table">Hash Table</a>, |
| 3303 | + <a href="#sorting">Sorting</a>, |
| 3304 | + <a href="#two-pointers">Two Pointers</a> |
3310 | 3305 | </td>
|
3311 | 3306 | <td>Solution Using
|
3312 | | - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_HashTable.java"><em>Hash Table</em></a> |
| 3307 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_HashTable.java"><em>Hash Table</em></a> or |
| 3308 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Sorting_TwoPointers.java"><em>Sorting & Two Pointers</em></a> |
3313 | 3309 | </td>
|
3314 | 3310 | </tr>
|
3315 | 3311 | <tr>
|
|
5268 | 5264 | <td align="center">
|
5269 | 5265 | <a href="#array">Array</a>,
|
5270 | 5266 | <a href="#counting">Counting</a>,
|
5271 | | - <a href="#hash-table">Hash Table</a> |
| 5267 | + <a href="#hash-table">Hash Table</a>, |
| 5268 | + <a href="#sorting">Sorting</a>, |
| 5269 | + <a href="#two-pointers">Two Pointers</a> |
5272 | 5270 | </td>
|
5273 | 5271 | <td>Solution Using
|
5274 | | - <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Counting.java"><em>Counting</em></a> |
| 5272 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Counting.java"><em>Counting</em></a> or |
| 5273 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Sorting_TwoPointers.java"><em>Sorting & Two Pointers</em></a> |
5275 | 5274 | </td>
|
5276 | 5275 | </tr>
|
5277 | 5276 | <tr>
|
|
7587 | 7586 | </td>
|
7588 | 7587 | <td></td>
|
7589 | 7588 | </tr>
|
| 7589 | + <tr> |
| 7590 | + <td align="center">923</td> |
| 7591 | + <td><a href="https://leetcode.com/problems/3sum-with-multiplicity/">3Sum With Multiplicity</a></td> |
| 7592 | + <td align="center"> |
| 7593 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Sorting_TwoPointers.java">Java</a> |
| 7594 | + </td> |
| 7595 | + <td align="center">$\text{\color{Dandelion}Medium}$</td> |
| 7596 | + <td align="center"> |
| 7597 | + <a href="#array">Array</a>, |
| 7598 | + <a href="#counting">Counting</a>, |
| 7599 | + <a href="#hash-table">Hash Table</a>, |
| 7600 | + <a href="#sorting">Sorting</a>, |
| 7601 | + <a href="#two-pointers">Two Pointers</a> |
| 7602 | + </td> |
| 7603 | + <td>Solution Using |
| 7604 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Counting.java"><em>Counting</em></a> |
| 7605 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_HashTable.java"><em>Hash Table</em></a> |
| 7606 | + </td> |
| 7607 | + </tr> |
7590 | 7608 | <tr>
|
7591 | 7609 | <td align="center">948</td>
|
7592 | 7610 | <td><a href="https://leetcode.com/problems/bag-of-tokens/">Bag of Tokens</a></td>
|
|
9570 | 9588 | </td>
|
9571 | 9589 | <td></td>
|
9572 | 9590 | </tr>
|
| 9591 | + <tr> |
| 9592 | + <td align="center">923</td> |
| 9593 | + <td><a href="https://leetcode.com/problems/3sum-with-multiplicity/">3Sum With Multiplicity</a></td> |
| 9594 | + <td align="center"> |
| 9595 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Sorting_TwoPointers.java">Java</a> |
| 9596 | + </td> |
| 9597 | + <td align="center">$\text{\color{Dandelion}Medium}$</td> |
| 9598 | + <td align="center"> |
| 9599 | + <a href="#array">Array</a>, |
| 9600 | + <a href="#counting">Counting</a>, |
| 9601 | + <a href="#hash-table">Hash Table</a>, |
| 9602 | + <a href="#sorting">Sorting</a>, |
| 9603 | + <a href="#two-pointers">Two Pointers</a> |
| 9604 | + </td> |
| 9605 | + <td>Solution Using |
| 9606 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_Counting.java"><em>Counting</em></a> |
| 9607 | + <a href="https://github.com/cheehwatang/leetcode-java/blob/main/solutions/923.%203Sum%20With%20Multiplicity/ThreeSumWithMultiplicity_HashTable.java"><em>Hash Table</em></a> |
| 9608 | + </td> |
| 9609 | + </tr> |
9573 | 9610 | <tr>
|
9574 | 9611 | <td align="center">948</td>
|
9575 | 9612 | <td><a href="https://leetcode.com/problems/bag-of-tokens/">Bag of Tokens</a></td>
|
|
0 commit comments