@@ -146,8 +146,9 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
146146| 27 | [ Remove-Element] ( https://leetcode.com/problems/remove-element/ ) | [ C++] ( ./C++/remove-element.cpp ) | O(N) | O(1) | Easy | Array |
147147| 36 | [ Valid Sudoku] ( https://leetcode.com/problems/valid-sudoku/ ) | [ Java] ( ./Java/valid-sudoku.java ) | O(N^2) | O(N) | Medium | Array, 2D Matrix |
148148| 1512 | [ Number of Good Pairs] ( https://leetcode.com/problems/number-of-good-pairs/ ) | [ Java] ( ./Java/Number-of-Good-Pairs.java ) | O(N^2) | O(1) | Easy | Array |
149- | 162 | [ Find Peak element] ( https://leetcode.com/problems/find-peak-element/ ) | [ javascript] ( https://github.com/codedecks-in/LeetCode-Solutions/blob/master/JavaScript/findPeakElement.js ) | o(Logn) | O(1) | Medium | Array |
150- | 54 | [ Spiral Matrix] ( https://leetcode.com/problems/spiral-matrix/ ) | [ C++] ( ./C++/Spiral-matrix.cpp ) | O(M\* N) | O(M\* N) | Medium | Array |
149+ | 162 | [ Find Peak element] ( https://leetcode.com/problems/find-peak-element/ ) | [ javascript] ( https://github.com/codedecks-in/LeetCode-Solutions/blob/master/JavaScript/findPeakElement.js ) | o(Logn) | O(1) | Medium | Array |
150+ | 54 | [ Spiral Matrix] ( https://leetcode.com/problems/spiral-matrix/ ) | [ C++] ( ./C++/Spiral-matrix.cpp ) | O(M\* N) | O(M\* N) | Medium | Array |
151+ | 238 | [ Product of Array Except Self] ( https://leetcode.com/problems/product-of-array-except-self/ ) | [ C++] ( ./C++/238.Product_of_array_except_self ) | O(N) | O(N) | Medium | Array |
151152
152153<br />
153154
@@ -304,23 +305,24 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
304305
305306# Math
306307
307- | # | Title | Solution | Time | Space | Difficulty | Tag | Note |
308- | ---- | ------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- | ----------------- | ------ | ---------- | ------ | ------------- |
309- | 050 | [ Pow(x, n)] ( https://leetcode.com/problems/powx-n/ ) | [ Python] ( ./Python/50.Powxn.py ) <br > [ JavaScript] ( ./JavaScript/50.Powxn.js ) | _ O(n)_ | _ O(1)_ | Medium | Math | |
310- | 204 | [ Count Primes] ( https://leetcode.com/problems/count-primes ) | [ C++] ( ./C++/Count-Primes.cpp ) | _ O(n(log(logn)))_ | _ O(n)_ | Easy | Math | |
311- | 171 | [ Excel Sheet Column Number] ( https://leetcode.com/problems/excel-sheet-column-number/ ) | [ C++] ( ./C++/Excel-Sheet-Column-Number.cpp ) | _ O(n)_ | _ O(1)_ | Easy | String | |
312- | 168 | [ Excel Sheet Column Title] ( https://leetcode.com/problems/excel-sheet-column-title ) | [ C++] ( ./C++/Excel-Sheet-Column-Title.cpp ) | _ O(n)_ | _ O(n)_ | Easy | String | |
313- | 007 | [ Reverse Integer] ( https://leetcode.com/problems/reverse-integer ) | [ Java] ( ./Java/reverse-integer.java ) <br > [ C++] ( ./C++/Reverse-Integer.cpp ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
314- | 202 | [ Happy Number] ( https://leetcode.com/problems/happy-number ) | [ Java] ( ./Java/Happy-Number.java ) | _ O(n^2)_ | _ O(n)_ | Easy | Math | |
315- | 326 | [ Power of Three] ( https://leetcode.com/problems/power-of-three ) | [ Java] ( ./Java/Power-of-Three.java ) | _ O(logn)_ | _ O(n)_ | Easy | Math | |
316- | 12 | [ Integer to Roman] ( https://leetcode.com/problems/integer-to-roman ) | [ Java] ( ./Java/integer-to-roman.java ) | _ O(n)_ | _ O(1)_ | Medium | Math | |
317- | 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 | |
318- | 14 | [ Arithmetic Subarrays] ( https://leetcode.com/problems/arithmetic-subarrays/ ) | [ Java] ( ./Java/Arithmetic-Subarrays.java ) | _ O(m\* n)_ | _ O(n)_ | Medium | Math | Pattern Count |
319- | 263 | [ Ugly Number] ( https://leetcode.com/problems/ugly-number/ ) | [ Java] ( ./Java/Ugly-Number.java ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
320- | 412 | [ Fizz Buzz] ( https://leetcode.com/problems/fizz-buzz/ ) | [ Java] ( ./Java/FizzBuzz.java ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
321- | 1518 | [ Water Bottles] ( https://leetcode.com/problems/water-bottles/ ) | [ Java] ( ./Java/WaterBottles.java ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
322- | 1822 | [ Sign Of Product] ( https://leetcode.com/problems/sign-of-the-product-of-an-array/ ) | [ Java] ( ./Java/SignOf.java ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
323- | 991 | [ Broken Calculator] ( https://leetcode.com/problems/broken-calculator/ ) | [ Java] ( ./Java/BrokenCalculator.java ) | _ O(n)_ | _ O(n)_ | Medium | Math | |
308+ | # | Title | Solution | Time | Space | Difficulty | Tag | Note |
309+ | --- | ------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- | ----------------- | ------ | ---------- | ------ | ------------- |
310+ | 050 | [ Pow(x, n)] ( https://leetcode.com/problems/powx-n/ ) | [ Python] ( ./Python/50.Powxn.py ) <br > [ JavaScript] ( ./JavaScript/50.Powxn.js ) | _ O(n)_ | _ O(1)_ | Medium | Math | |
311+ | 204 | [ Count Primes] ( https://leetcode.com/problems/count-primes ) | [ C++] ( ./C++/Count-Primes.cpp ) | _ O(n(log(logn)))_ | _ O(n)_ | Easy | Math | |
312+ | 171 | [ Excel Sheet Column Number] ( https://leetcode.com/problems/excel-sheet-column-number/ ) | [ C++] ( ./C++/Excel-Sheet-Column-Number.cpp ) | _ O(n)_ | _ O(1)_ | Easy | String | |
313+ | 168 | [ Excel Sheet Column Title] ( https://leetcode.com/problems/excel-sheet-column-title ) | [ C++] ( ./C++/Excel-Sheet-Column-Title.cpp ) | _ O(n)_ | _ O(n)_ | Easy | String | |
314+ | 007 | [ Reverse Integer] ( https://leetcode.com/problems/reverse-integer ) | [ Java] ( ./Java/reverse-integer.java ) <br > [ C++] ( ./C++/Reverse-Integer.cpp ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
315+ | 202 | [ Happy Number] ( https://leetcode.com/problems/happy-number ) | [ Java] ( ./Java/Happy-Number.java ) | _ O(n^2)_ | _ O(n)_ | Easy | Math | |
316+ | 326 | [ Power of Three] ( https://leetcode.com/problems/power-of-three ) | [ Java] ( ./Java/Power-of-Three.java ) | _ O(logn)_ | _ O(n)_ | Easy | Math | |
317+ | 12 | [ Integer to Roman] ( https://leetcode.com/problems/integer-to-roman ) | [ Java] ( ./Java/integer-to-roman.java ) | _ O(n)_ | _ O(1)_ | Medium | Math | |
318+ | 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 | |
319+ | 14 | [ Arithmetic Subarrays] ( https://leetcode.com/problems/arithmetic-subarrays/ ) | [ Java] ( ./Java/Arithmetic-Subarrays.java ) | _ O(m\* n)_ | _ O(n)_ | Medium | Math | Pattern Count |
320+ | 263 | [ Ugly Number] ( https://leetcode.com/problems/ugly-number/ ) | [ Java] ( ./Java/Ugly-Number.java ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
321+ | 412 | [ Fizz Buzz] ( https://leetcode.com/problems/fizz-buzz/ ) | [ Java] ( ./Java/FizzBuzz.java ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
322+ | 1518 | [ Water Bottles] ( https://leetcode.com/problems/water-bottles/ ) | [ Java] ( ./Java/WaterBottles.java ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
323+ | 1822 | [ Sign Of Product] ( https://leetcode.com/problems/sign-of-the-product-of-an-array/ ) | [ Java] ( ./Java/SignOf.java ) | _ O(n)_ | _ O(n)_ | Easy | Math | |
324+ | 991 | [ Broken Calculator] ( https://leetcode.com/problems/broken-calculator/ ) | [ Java] ( ./Java/BrokenCalculator.java ) | _ O(n)_ | _ O(n)_ | Medium | Math | |
325+ | 1837 | [ Sum of Digits in Base K] ( https://leetcode.com/problems/sum-of-digits-in-base-k/ ) | [ Python] ( ./Python/baseK.py ) | _ O(n)_ | _ O(1)_ | Easy | Math | |
324326
325327<br />
326328<div align =" right " >
@@ -394,7 +396,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
394396| 070 | [ Climbing Stairs] ( https://leetcode.com/problems/climbing-stairs/ ) | [ Java] ( ./Java/climbing-stairs.java ) | _ O(N)_ | _ O(1)_ | Easy | DP | |
395397| 730 | [ Count Different Palindromic Subsequences] ( https://leetcode.com/problems/count-different-palindromic-subsequences/ ) | [ C++] ( ./C++/Count-Different-Palindromic-Subsequences.cpp ) | _ O(N\* N)_ | _ O(N\* N)_ | Hard | DP | |
396398| 55 | [ Jump Game] ( https://leetcode.com/problems/jump-game/ ) | [ Python] ( ./Python/jumpGame.py ) | _ O(N)_ | _ O(N)_ | Medium | DP | |
397- | 343 | [ House Robber 3] ( https://leetcode.com/problems/house-robber-iii/ ) | [ C++] ( ./C++/House-Robber-3.cpp ) | _ O(n)_ | _ O(n)_ | Medium | DP Tree DFS Binary Tree |
399+ | 337 | [ House Robber 3] ( https://leetcode.com/problems/house-robber-iii/ ) | [ C++] ( ./C++/House-Robber-3.cpp ) | _ O(n)_ | _ O(n)_ | Medium | DP Tree DFS Binary Tree |
398400
399401<br />
400402<div align =" right " >
0 commit comments