You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* added 13.Roman_to_Integer.cpp
* Update Math table on README
Added c++ linked selution to Roman_to_Integer
* Added 20. Valid_Parentheses.cpp
* Added The README missing part
* Changed file name
from 20. Valid_Parentheses to Valid_Parentheses
* Fixed link
Indeed I've forgotten to adjust the path as well.
Thanks for the patience
| 084 |[Largest Rectangle in Histogram](https://leetcode.com/problems/largest-rectangle-in-histogram/)|[C++](./C++/Largest-Rectangle-in-Histogram.cpp)|_O(n)_|_O(n)_| Hard | Stack |
| 1047 |[Remove All Adjacent Duplicates In String](https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string/)|[C++](./C++/remove-all-adjacent-duplicates-in-string.cpp)|_O(n)_|_O(n)_| Easy | Stack ||
@@ -309,7 +309,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
309
309
| 202 |[Happy Number](https://leetcode.com/problems/happy-number)|[Java](./Java/Happy-Number.java)|_O(n^2)_|_O(n)_| Easy | Math ||
310
310
| 326 |[Power of Three](https://leetcode.com/problems/power-of-three)|[Java](./Java/Power-of-Three.java)|_O(logn)_|_O(n)_| Easy | Math ||
311
311
| 12 |[Integer to Roman](https://leetcode.com/problems/integer-to-roman)|[Java](./Java/integer-to-roman.java)|_O(n)_|_O(1)_| Medium | Math ||
312
-
| 13 |[Roman to Integer](https://leetcode.com/problems/roman-to-integer)|[Java](./Java/roman-to-integer.java)|_O(n)_|_O(1)_| Easy | Math ||
312
+
| 13 |[Roman to Integer](https://leetcode.com/problems/roman-to-integer)|[Java](./Java/roman-to-integer.java)<br> [C++](./C++/Roman_to_Integer.cpp)|_O(n)_|_O(1)_| Easy | Math ||
313
313
| 14 |[Arithmetic Subarrays](https://leetcode.com/problems/arithmetic-subarrays/)|[Java](./Java/Arithmetic-Subarrays.java)|_O(m\*n)_|_O(n)_| Medium | Math | Pattern Count |
314
314
| 263 |[Ugly Number](https://leetcode.com/problems/ugly-number/)|[Java](./Java/Ugly-Number.java)|_O(n)_|_O(n)_| Easy | Math ||
0 commit comments