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
|[Leetcode-1780](https://leetcode.com/problems/check-if-number-is-a-sum-of-powers-of-three/)| Check If Number Is A Sum Of Powers Of Three |[c++](./leetcode/1780.check-if-number-is-a-sum-of-powers-of-three.cpp), [python3](./leetcode/1780.check-if-number-is-a-sum-of-powers-of-three.py)| Math | O\(LogN\)| O\(1\)| - |
110
111
|[Leetcode-3274](https://leetcode.com/problems/check-if-two-chessboard-squares-have-the-same-color/)| Check If Two Chessboard Squares Have The Same Color |[c++](./leetcode/3274.check-if-two-chessboard-squares-have-the-same-color.cpp), [python3](./leetcode/3274.check-if-two-chessboard-squares-have-the-same-color.py)| Math | O\(1\)| O\(1\)| - |
111
112
|[Leetcode-3280](https://leetcode.com/problems/convert-date-to-binary/)| Convert Date To Binary |[c++](./leetcode/3280.convert-date-to-binary.cpp), [python3](./leetcode/3280.convert-date-to-binary.py)| Math | O\(1\)| O\(1\)| - |
112
113
|[Leetcode-2364](https://leetcode.com/problems/count-number-of-bad-pairs/)| Count Number Of Bad Pairs |[c++](./leetcode/2364.count-number-of-bad-pairs.cpp), [python3](./leetcode/2364.count-number-of-bad-pairs.py)| Math | O\(N\)| O\(N\)| - |
|[Leetcode-3048](https://leetcode.com/problems/earliest-second-to-mark-indices-i/)| Earliest Second To Mark Indices I |[c++](./leetcode/3048.earliest-second-to-mark-indices-i.cpp), [python3](./leetcode/3048.earliest-second-to-mark-indices-i.py)| Binary Search | O\(NlogN\)| O\(N\)| - |
|[Leetcode-278](https://leetcode.com/problems/first-bad-version/)| First Bad Version |[c++](./leetcode/278.first-bad-version.cpp), [python3](./leetcode/278.first-bad-version.py)| Binary Search | O\(logN\)| O\(1\)| - |
391
393
|[Leetcode-1838](https://leetcode.com/problems/frequency-of-the-most-frequent-element/)| Frequency Of The Most Frequent Element |[c++](./leetcode/1838.frequency-of-the-most-frequent-element.cpp), [python3](./leetcode/1838.frequency-of-the-most-frequent-element.py)| Binary Search | O\(NlogN\)| O\(1\)| - |
392
394
|[Leetcode-1208](https://leetcode.com/problems/get-equal-substrings-within-budget/)| Get Equal Substrings Within Budget |[c++](./leetcode/1208.get-equal-substrings-within-budget.cpp), [python3](./leetcode/1208.get-equal-substrings-within-budget.py)| Binary Search | O\(N\)| O\(1\)| - |
|[Leetcode-863](https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree/)| All Nodes Distance K In Binary Tree |[c++](./leetcode/863.all-nodes-distance-k-in-binary-tree.cpp), [python3](./leetcode/863.all-nodes-distance-k-in-binary-tree.py)| Hash Table | O\(N\)| O\(N\)| - |
|[Leetcode-438](https://leetcode.com/problems/find-all-anagrams-in-a-string/)| Find All Anagrams In A String |[c++](./leetcode/438.find-all-anagrams-in-a-string.cpp), [python3](./leetcode/438.find-all-anagrams-in-a-string.py)| Hash Table | O\(N\)| O\(K\)| - |
478
480
|[Leetcode-448](https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array/)| Find All Numbers Disappeared In An Array |[c++](./leetcode/448.find-all-numbers-disappeared-in-an-array.cpp), [python3](./leetcode/448.find-all-numbers-disappeared-in-an-array.py)| Hash Table | O\(N\)| O\(1\)| - |
479
481
|[Leetcode-1261](https://leetcode.com/problems/find-elements-in-a-contaminated-binary-tree/)| Find Elements In A Contaminated Binary Tree |[c++](./leetcode/1261.find-elements-in-a-contaminated-binary-tree.cpp), [python3](./leetcode/1261.find-elements-in-a-contaminated-binary-tree.py)| Hash Table | O\(N\)| O\(N\)| - |
|[Leetcode-3160](https://leetcode.com/problems/find-the-number-of-distinct-colors-among-the-balls/)| Find The Number Of Distinct Colors Among The Balls |[c++](./leetcode/3160.find-the-number-of-distinct-colors-among-the-balls.cpp), [python3](./leetcode/3160.find-the-number-of-distinct-colors-among-the-balls.py)| Hash Table | O\(N\)| O\(N\)| - |
|[Leetcode-387](https://leetcode.com/problems/first-unique-character-in-a-string/)| First Unique Character In A String |[c++](./leetcode/387.first-unique-character-in-a-string.cpp), [python3](./leetcode/387.first-unique-character-in-a-string.py)| Hash Table | O\(N\)| O\(N\)| - |
|[Leetcode-658](https://leetcode.com/problems/find-k-closest-elements/)| Find K Closest Elements |[c++](./leetcode/658.find-k-closest-elements.cpp), [python3](./leetcode/658.find-k-closest-elements.py)| Sliding Window | O\(Log\(N \- K\)\)| O\(1\)| - |
724
727
|[Leetcode-2156](https://leetcode.com/problems/find-substring-with-given-hash-value/)| Find Substring With Given Hash Value |[c++](./leetcode/2156.find-substring-with-given-hash-value.cpp), [python3](./leetcode/2156.find-substring-with-given-hash-value.py)| Sliding Window | O\(N\)| O\(1\)| - |
725
728
|[Leetcode-2269](https://leetcode.com/problems/find-the-k-beauty-of-a-number/)| Find The K Beauty Of A Number |[c++](./leetcode/2269.find-the-k-beauty-of-a-number.cpp), [python3](./leetcode/2269.find-the-k-beauty-of-a-number.py)| Sliding Window | O\(N\)| O\(N\)| - |
|[Leetcode-1838](https://leetcode.com/problems/frequency-of-the-most-frequent-element/)| Frequency Of The Most Frequent Element |[c++](./leetcode/1838.frequency-of-the-most-frequent-element.cpp), [python3](./leetcode/1838.frequency-of-the-most-frequent-element.py)| Sliding Window | O\(NlogN\)| O\(1\)| - |
728
732
|[Leetcode-904](https://leetcode.com/problems/fruit-into-baskets/)| Fruit Into Baskets |[c++](./leetcode/904.fruit-into-baskets.cpp), [python3](./leetcode/904.fruit-into-baskets.py)| Sliding Window | O\(N\)| O\(1\)| - |
0 commit comments