Skip to content

s-suryakiran/leet-code-problems

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

417 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

leetcode problems

My Leetcode profile - https://leetcode.com/s-suryakiran/

Solved 164 leetcode problems.

Problem No Problem Name Problem URL Solution URL
1 Two Sum https://leetcode.com/problems/two-sum/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1.%20Two%20Sum.py
2 Add Two Numbers https://leetcode.com/problems/add-two-numbers/ https://github.com/s-suryakiran/leet-code-problems/blob/main/2.%20Add%20Two%20Numbers.py
4 Median of Two Sorted Arrays https://leetcode.com/problems/median-of-two-sorted-arrays/ https://github.com/s-suryakiran/leet-code-problems/blob/main/4.%20Median%20of%20Two%20Sorted%20Arrays.py
5 Longest Palindromic Substring https://leetcode.com/problems/longest-palindromic-substring/ https://github.com/s-suryakiran/leet-code-problems/blob/main/5.%20Longest%20Palindromic%20Substring.py
9 Palindrome Number https://leetcode.com/problems/palindrome-number/ https://github.com/s-suryakiran/leet-code-problems/blob/main/9.%20Palindrome%20Number.py
11 Container With Most Water https://leetcode.com/problems/container-with-most-water/ https://github.com/s-suryakiran/leet-code-problems/blob/main/11.%20Container%20With%20Most%20Water.py
13 Roman to Integer https://leetcode.com/problems/roman-to-integer/ https://github.com/s-suryakiran/leet-code-problems/blob/main/13.%20Roman%20to%20Integer.py
15 3Sum https://leetcode.com/problems/3sum/ https://github.com/s-suryakiran/leet-code-problems/blob/main/15.%203Sum.py
17 Letter Combinations of a Phone Number https://leetcode.com/problems/letter-combinations-of-a-phone-number/ https://github.com/s-suryakiran/leet-code-problems/blob/main/17.%20Letter%20Combinations%20of%20a%20Phone%20Number.py
19 Remove Nth Node From End of List https://leetcode.com/problems/remove-nth-node-from-end-of-list/ https://github.com/s-suryakiran/leet-code-problems/blob/main/19.%20Remove%20Nth%20Node%20From%20End%20of%20List.py
20 Valid Parentheses https://leetcode.com/problems/valid-parentheses/ https://github.com/s-suryakiran/leet-code-problems/blob/main/20.%20Valid%20Parentheses.py
21 Merge Two Sorted Lists https://leetcode.com/problems/merge-two-sorted-lists/ https://github.com/s-suryakiran/leet-code-problems/blob/main/21.%20Merge%20Two%20Sorted%20Lists.py
22 Generate Parentheses https://leetcode.com/problems/generate-parentheses/ https://github.com/s-suryakiran/leet-code-problems/blob/main/22.%20Generate%20Parentheses.cpp
23 Merge k Sorted Lists https://leetcode.com/problems/merge-k-sorted-lists/ https://github.com/s-suryakiran/leet-code-problems/blob/main/23.%20Merge%20k%20Sorted%20Lists.py
25 Reverse Nodes in k-Group https://leetcode.com/problems/reverse-nodes-in-k-group/ https://github.com/s-suryakiran/leet-code-problems/blob/main/25.%20Reverse%20Nodes%20in%20k-Group.py
34 Find First and Last Position of Element in Sorted Array https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array/ https://github.com/s-suryakiran/leet-code-problems/blob/main/34.%20Find%20First%20and%20Last%20Position%20of%20Element%20in%20Sorted%20Array.py
36 Valid Sudoku https://leetcode.com/problems/valid-sudoku/ https://github.com/s-suryakiran/leet-code-problems/blob/main/36.%20Valid%20Sudoku.py
38 Count and Say https://leetcode.com/problems/count-and-say/ https://github.com/s-suryakiran/leet-code-problems/blob/main/38.%20Count%20and%20Say.cpp
39 Combination Sum https://leetcode.com/problems/combination-sum/ https://github.com/s-suryakiran/leet-code-problems/blob/main/39.%20Combination%20Sum.py
40 Combination Sum II https://leetcode.com/problems/combination-sum-ii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/40.%20Combination%20Sum%20II.py
42 Trapping Rain Water https://leetcode.com/problems/trapping-rain-water/ https://github.com/s-suryakiran/leet-code-problems/blob/main/42.%20Trapping%20Rain%20Water.cpp
46 Permutations https://leetcode.com/problems/permutations/ https://github.com/s-suryakiran/leet-code-problems/blob/main/46.%20Permutations.py
49 Group Anagrams https://leetcode.com/problems/group-anagrams/ https://github.com/s-suryakiran/leet-code-problems/blob/main/49.%20Group%20Anagrams.py
51 N-Queens https://leetcode.com/problems/n-queens/ https://github.com/s-suryakiran/leet-code-problems/blob/main/51.%20N-Queens.py
53 Maximum Subarray https://leetcode.com/problems/maximum-subarray/ https://github.com/s-suryakiran/leet-code-problems/blob/main/53.%20Maximum%20Subarray.py
56 Merge Intervals https://leetcode.com/problems/merge-intervals/ https://github.com/s-suryakiran/leet-code-problems/blob/main/56.%20Merge%20Intervals.py
57 Insert Interval https://leetcode.com/problems/insert-interval/ https://github.com/s-suryakiran/leet-code-problems/blob/main/57.%20Insert%20Interval.py
62 Unique Paths https://leetcode.com/problems/unique-paths/
67 Add Binary https://leetcode.com/problems/add-binary/ https://github.com/s-suryakiran/leet-code-problems/blob/main/67.%20Add%20Binary.py
70 Climbing Stairs https://leetcode.com/problems/climbing-stairs/ https://github.com/s-suryakiran/leet-code-problems/blob/main/70.%20Climbing%20Stairs.py
78 Subsets https://leetcode.com/problems/subsets/ https://github.com/s-suryakiran/leet-code-problems/blob/main/78.%20Subsets.py
79 Word Search https://leetcode.com/problems/word-search/ https://github.com/s-suryakiran/leet-code-problems/blob/main/79.%20Word%20Search.py
84 Largest Rectangle in Histogram https://leetcode.com/problems/largest-rectangle-in-histogram/ https://github.com/s-suryakiran/leet-code-problems/blob/main/84.%20Largest%20Rectangle%20in%20Histogram.cpp
86 Partition List https://leetcode.com/problems/partition-list/ https://github.com/s-suryakiran/leet-code-problems/blob/main/86.%20Partition%20List.py
88 Merge Sorted Array https://leetcode.com/problems/merge-sorted-array/ https://github.com/s-suryakiran/leet-code-problems/blob/main/88.%20Merge%20Sorted%20Array.cpp
90 Subsets II https://leetcode.com/problems/subsets-ii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/90.%20Subsets%20II.py
91 Decode Ways https://leetcode.com/problems/decode-ways/ https://github.com/s-suryakiran/leet-code-problems/blob/main/91.%20Decode%20Ways.py
92 Reverse Linked List II https://leetcode.com/problems/reverse-linked-list-ii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/92.%20Reverse%20Linked%20List%20II.py
98 Validate Binary Search Tree https://leetcode.com/problems/validate-binary-search-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/98.%20Validate%20Binary%20Search%20Tree.py
100 Same Tree https://leetcode.com/problems/same-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/100.%20Same%20Tree.py
102 Binary Tree Level Order Traversal https://leetcode.com/problems/binary-tree-level-order-traversal/ https://github.com/s-suryakiran/leet-code-problems/blob/main/102.%20Binary%20Tree%20Level%20Order%20Traversal.py
104 Maximum Depth of Binary Tree https://leetcode.com/problems/maximum-depth-of-binary-tree/
105 Construct Binary Tree from Preorder and Inorder Traversal https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/ https://github.com/s-suryakiran/leet-code-problems/blob/main/105.%20Construct%20Binary%20Tree%20from%20Preorder%20and%20Inorder%20Traversal.py
108 Convert Sorted Array to Binary Search Tree https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/108.%20Convert%20Sorted%20Array%20to%20Binary%20Search%20Tree.py
110 Balanced Binary Tree https://leetcode.com/problems/balanced-binary-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/110.%20Balanced%20Binary%20Tree.py
114 Flatten Binary Tree to Linked List https://leetcode.com/problems/flatten-binary-tree-to-linked-list/ https://github.com/s-suryakiran/leet-code-problems/blob/main/114.%20Flatten%20Binary%20Tree%20to%20Linked%20List.py
121 Best Time to Buy and Sell Stock https://leetcode.com/problems/best-time-to-buy-and-sell-stock/ https://github.com/s-suryakiran/leet-code-problems/blob/main/121.%20Best%20Time%20to%20Buy%20and%20Sell%20Stock.py
124 Binary Tree Maximum Path Sum https://leetcode.com/problems/binary-tree-maximum-path-sum/
125 Valid Palindrome https://leetcode.com/problems/valid-palindrome/ https://github.com/s-suryakiran/leet-code-problems/blob/main/125.%20Valid%20Palindrome.py
127 Word Ladder https://leetcode.com/problems/word-ladder/ https://github.com/s-suryakiran/leet-code-problems/blob/main/127.%20Word%20Ladder.py
128 Longest Consecutive Sequence https://leetcode.com/problems/longest-consecutive-sequence/ https://github.com/s-suryakiran/leet-code-problems/blob/main/128.%20Longest%20Consecutive%20Sequence.py
130 Surrounded Regions https://leetcode.com/problems/surrounded-regions/ https://github.com/s-suryakiran/leet-code-problems/blob/main/130.%20Surrounded%20Regions.py
131 Palindrome Partitioning https://leetcode.com/problems/palindrome-partitioning/ https://github.com/s-suryakiran/leet-code-problems/blob/main/131.%20Palindrome%20Partitioning.py
133 Clone Graph https://leetcode.com/problems/clone-graph/ https://github.com/s-suryakiran/leet-code-problems/blob/main/133.%20Clone%20Graph.py
138 Copy List with Random Pointer https://leetcode.com/problems/copy-list-with-random-pointer/ https://github.com/s-suryakiran/leet-code-problems/blob/main/138.%20Copy%20List%20with%20Random%20Pointer.cpp
139 Word Break https://leetcode.com/problems/word-break/ https://github.com/s-suryakiran/leet-code-problems/blob/main/139.%20Word%20Break.py
141 Linked List Cycle https://leetcode.com/problems/linked-list-cycle/ https://github.com/s-suryakiran/leet-code-problems/blob/main/141.%20Linked%20List%20Cycle.py
142 Linked List Cycle II https://leetcode.com/problems/linked-list-cycle-ii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/142.%20Linked%20List%20Cycle%20II.py
143 Reorder List https://leetcode.com/problems/reorder-list/ https://github.com/s-suryakiran/leet-code-problems/blob/main/143.%20Reorder%20List.py
146 LRU Cache https://leetcode.com/problems/lru-cache/ https://github.com/s-suryakiran/leet-code-problems/blob/main/146.%20LRU%20Cache.py
150 Evaluate Reverse Polish Notation https://leetcode.com/problems/evaluate-reverse-polish-notation/ https://github.com/s-suryakiran/leet-code-problems/blob/main/150.%20Evaluate%20Reverse%20Polish%20Notation.cpp
151 Reverse Words in a String https://leetcode.com/problems/reverse-words-in-a-string/ https://github.com/s-suryakiran/leet-code-problems/blob/main/151.%20Reverse%20Words%20in%20a%20String.cpp
152 Maximum Product Subarray https://leetcode.com/problems/maximum-product-subarray/ https://github.com/s-suryakiran/leet-code-problems/blob/main/152.%20Maximum%20Product%20Subarray.py
155 Min Stack https://leetcode.com/problems/min-stack/ https://github.com/s-suryakiran/leet-code-problems/blob/main/155.%20Min%20Stack.cpp
167 Two Sum II - Input Array Is Sorted https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/ https://github.com/s-suryakiran/leet-code-problems/blob/main/167.%20Two%20Sum%20II%20-%20Input%20Array%20Is%20Sorted.py
169 Majority Element https://leetcode.com/problems/majority-element/ https://github.com/s-suryakiran/leet-code-problems/blob/main/169.%20Majority%20Element.py
178 Graph Valid Tree https://neetcode.io/problems/valid-tree https://github.com/s-suryakiran/leet-code-problems/blob/main/178.%20Graph%20Valid%20Tree.py
198 House Robber https://leetcode.com/problems/house-robber/ https://github.com/s-suryakiran/leet-code-problems/blob/main/198.%20House%20Robber.py
199 Binary Tree Right Side View https://leetcode.com/problems/binary-tree-right-side-view/ https://github.com/s-suryakiran/leet-code-problems/blob/main/199.%20Binary%20Tree%20Right%20Side%20View.py
200 Number of Islands https://leetcode.com/problems/number-of-islands/description/ https://github.com/s-suryakiran/leet-code-problems/blob/main/200.%20Number%20of%20Islands.py
205 Isomorhic Strings https://leetcode.com/problems/isomorphic-strings/ https://github.com/s-suryakiran/leet-code-problems/blob/main/205.%20Isomorphic%20Strings.py
206 Reverse Linked List https://leetcode.com/problems/reverse-linked-list/ https://github.com/s-suryakiran/leet-code-problems/blob/main/206.%20Reverse%20Linked%20List.py
207 Course Schedule https://leetcode.com/problems/course-schedule/ https://github.com/s-suryakiran/leet-code-problems/blob/main/207.%20Course%20Schedule.py
208 Implement Trie (Prefix Tree) https://leetcode.com/problems/implement-trie-prefix-tree https://github.com/s-suryakiran/leet-code-problems/blob/main/208.%20Implement%20Trie%20(Prefix%20Tree).py
210 Course Schedule II https://leetcode.com/problems/course-schedule-ii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/210.%20Course%20Schedule%20II.py
211 Design Add and Search Words Data Structure https://leetcode.com/problems/design-add-and-search-words-data-structure/ https://github.com/s-suryakiran/leet-code-problems/blob/main/211.%20Design%20Add%20and%20Search%20Words%20Data%20Structure.py
212 Word Search II https://leetcode.com/problems/word-search-ii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/212.%20Word%20Search%20II.py
213 House Robber II https://leetcode.com/problems/house-robber-ii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/213.%20House%20Robber%20II.py
215 Kth Largest Element in an Array https://leetcode.com/problems/kth-largest-element-in-an-array/ https://github.com/s-suryakiran/leet-code-problems/blob/main/215.%20Kth%20Largest%20Element%20in%20an%20Array.py
217 Contains Duplicate https://leetcode.com/problems/contains-duplicate/ https://github.com/s-suryakiran/leet-code-problems/blob/main/217.%20Contains%20Duplicate.py
226 Invert Binary Tree https://leetcode.com/problems/invert-binary-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/226.%20Invert%20Binary%20Tree.py
227 Basic Calculator II https://leetcode.com/problems/basic-calculator-ii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/227.%20Basic%20Calculator%20II.cpp
230 Kth Smallest Element in a BST https://leetcode.com/problems/kth-smallest-element-in-a-bst/ https://github.com/s-suryakiran/leet-code-problems/blob/main/230.%20Kth%20Smallest%20Element%20in%20a%20BST.py
232 Implement Queue using Stacks https://leetcode.com/problems/implement-queue-using-stacks/ https://github.com/s-suryakiran/leet-code-problems/blob/main/232.%20Implement%20Queue%20using%20Stacks.py
234 Palindrome Linked List https://leetcode.com/problems/palindrome-linked-list/ https://github.com/s-suryakiran/leet-code-problems/blob/main/234.%20Palindrome%20Linked%20List.py
235 Lowest Common Ancestor of a Binary Search Tree https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/235.%20Lowest%20Common%20Ancestor%20of%20a%20Binary%20Search%20Tree.py
236 Lowest Common Ancestor of a Binary Tree https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/236.%20Lowest%20Common%20Ancestor%20of%20a%20Binary%20Tree.py
238 Product of Array Except Self https://leetcode.com/problems/product-of-array-except-self/
240 Search a 2D Matrix II https://leetcode.com/problems/search-a-2d-matrix-ii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/240.%20Search%20a%202D%20Matrix%20II.py
242 Valid Anagram https://leetcode.com/problems/valid-anagram/ https://github.com/s-suryakiran/leet-code-problems/blob/main/242.%20Valid%20Anagram.py
252 Meeting Rooms https://neetcode.io/problems/meeting-schedule https://github.com/s-suryakiran/leet-code-problems/blob/main/252.%20Meeting%20Rooms.py
253 Meeting Rooms II https://neetcode.io/problems/meeting-schedule-ii https://github.com/s-suryakiran/leet-code-problems/blob/main/253.%20Meeting%20Rooms%20II.py
271 Encode and Decode Strings https://www.lintcode.com/problem/659/ https://github.com/s-suryakiran/leet-code-problems/blob/main/271.%20Encode%20and%20Decode%20Strings.py
278 First Bad Version https://leetcode.com/problems/first-bad-version/ https://github.com/s-suryakiran/leet-code-problems/blob/main/278.%20First%20Bad%20Version.py
283 Move Zeroes https://leetcode.com/problems/move-zeroes/ https://github.com/s-suryakiran/leet-code-problems/blob/main/283.%20Move%20Zeroes.cpp
287 Find the Duplicate Number https://leetcode.com/problems/find-the-duplicate-number/ https://github.com/s-suryakiran/leet-code-problems/blob/main/287.%20Find%20the%20Duplicate%20Number.py
295 Find Median from Data Stream https://leetcode.com/problems/find-median-from-data-stream/ https://github.com/s-suryakiran/leet-code-problems/blob/main/295.%20Find%20Median%20from%20Data%20Stream.py
297 Serialize and Deserialize Binary Tree https://leetcode.com/problems/serialize-and-deserialize-binary-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/297.%20Serialize%20and%20Deserialize%20Binary%20Tree.py
300 Longest Increasing Subsequence https://leetcode.com/problems/longest-increasing-subsequence/ https://github.com/s-suryakiran/leet-code-problems/blob/main/300.%20Longest%20Increasing%20Subsequence.py
307 Range Sum Query - Mutable https://leetcode.com/problems/range-sum-query-mutable/ https://github.com/s-suryakiran/leet-code-problems/blob/main/307.%20Range%20Sum%20Query%20-%20Mutable.py
315 Count of Smaller Numbers After Self https://leetcode.com/problems/count-of-smaller-numbers-after-self/ https://github.com/s-suryakiran/leet-code-problems/blob/main/315.%20Count%20of%20Smaller%20Numbers%20After%20Self.py
322 Coin Change https://leetcode.com/problems/coin-change/ https://github.com/s-suryakiran/leet-code-problems/blob/main/322.%20Coin%20Change.py
323 Number of Connected Components https://neetcode.io/problems/count-connected-components https://github.com/s-suryakiran/leet-code-problems/blob/main/323.%20Number%20of%20Connected%20Components.py
334 Increasing Triplet Subsequence https://leetcode.com/problems/increasing-triplet-subsequence/ https://github.com/s-suryakiran/leet-code-problems/blob/main/334.%20Increasing%20Triplet%20Subsequence.cpp
345 Reverse Vowels of a String https://leetcode.com/problems/reverse-vowels-of-a-string/ https://github.com/s-suryakiran/leet-code-problems/blob/main/345.%20Reverse%20Vowels%20of%20a%20String.cpp
347 Top K Frequent Elements https://leetcode.com/problems/top-k-frequent-elements/ https://github.com/s-suryakiran/leet-code-problems/blob/main/347.%20Top%20K%20Frequent%20Elements.py
355 Design Twitter https://leetcode.com/problems/design-twitter/ https://github.com/s-suryakiran/leet-code-problems/blob/main/355.%20Design%20Twitter.py
377 Combination Sum IV https://leetcode.com/problems/combination-sum-iv/ https://github.com/s-suryakiran/leet-code-problems/blob/main/377.%20Combination%20Sum%20IV.py
378 Kth Smallest Element in a Sorted Matrix https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix/ https://github.com/s-suryakiran/leet-code-problems/blob/main/378.%20Kth%20Smallest%20Element%20in%20a%20Sorted%20Matrix.py
383 Ransom Note https://leetcode.com/problems/ransom-note/ https://github.com/s-suryakiran/leet-code-problems/blob/main/383.%20Ransom%20Note.py
392 Is Subsequence https://leetcode.com/problems/is-subsequence/
409 Longest Palindrome https://leetcode.com/problems/longest-palindrome/ https://github.com/s-suryakiran/leet-code-problems/blob/main/409.%20Longest%20Palindrome.py
416 Partition Equal Subset Sum https://leetcode.com/problems/partition-equal-subset-sum/ https://github.com/s-suryakiran/leet-code-problems/blob/main/416.%20Partition%20Equal%20Subset%20Sum.py
417 Pacific Atlantic Water Flow https://leetcode.com/problems/pacific-atlantic-water-flow/ https://github.com/s-suryakiran/leet-code-problems/blob/main/417.%20Pacific%20Atlantic%20Water%20Flow.py
435 Non-overlapping Intervals https://leetcode.com/problems/non-overlapping-intervals/ https://github.com/s-suryakiran/leet-code-problems/blob/main/435.%20Non-overlapping%20Intervals.py
443 String Compression https://leetcode.com/problems/string-compression/ https://github.com/s-suryakiran/leet-code-problems/blob/main/443.%20String%20Compression.cpp
458 Poor Pigs https://leetcode.com/problems/poor-pigs/ https://github.com/s-suryakiran/leet-code-problems/blob/main/458.%20Poor%20Pigs.py
543 Diameter of Binary Tree https://leetcode.com/problems/diameter-of-binary-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/543.%20Diameter%20of%20Binary%20Tree.py
572 Subtree of Another Tree https://leetcode.com/problems/subtree-of-another-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/572.%20Subtree%20of%20Another%20Tree.py
589 N-ary Tree Preorder Traversal https://leetcode.com/problems/n-ary-tree-preorder-traversal/ https://github.com/s-suryakiran/leet-code-problems/blob/main/589.%20N-ary%20Tree%20Preorder%20Traversal.py
605 Can Place Flowers https://leetcode.com/problems/can-place-flowers/ https://github.com/s-suryakiran/leet-code-problems/blob/main/605.%20Can%20Place%20Flowers.cpp
621 Task Scheduler https://leetcode.com/problems/task-scheduler/ https://github.com/s-suryakiran/leet-code-problems/blob/main/621.%20Task%20Scheduler.py
637 Average of Levels in Binary Tree https://leetcode.com/problems/average-of-levels-in-binary-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/637.%20Average%20of%20Levels%20in%20Binary%20Tree.py
643 Maximum Average Subarray I https://leetcode.com/problems/maximum-average-subarray-i/ https://github.com/s-suryakiran/leet-code-problems/blob/main/643.%20Maximum%20Average%20Subarray%20I.cpp
647 Palindromic Substrings https://leetcode.com/problems/palindromic-substrings/ https://github.com/s-suryakiran/leet-code-problems/blob/main/647.%20Palindromic%20Substrings.py
663 Walls and Gates https://www.lintcode.com/problem/663/ https://github.com/s-suryakiran/leet-code-problems/blob/main/663.%20Walls%20and%20Gates.py
684 Redundant Connection https://leetcode.com/problems/redundant-connection/ https://github.com/s-suryakiran/leet-code-problems/blob/main/684.%20Redundant%20Connection.py
695 Max Area of Island https://leetcode.com/problems/max-area-of-island https://github.com/s-suryakiran/leet-code-problems/blob/main/695.%20Max%20Area%20of%20Island.py
703 Kth Largest Element in a Stream https://leetcode.com/problems/kth-largest-element-in-a-stream/ https://github.com/s-suryakiran/leet-code-problems/blob/main/703.%20Kth%20Largest%20Element%20in%20a%20Stream.py
704 Binary Search https://leetcode.com/problems/binary-search/ https://github.com/s-suryakiran/leet-code-problems/blob/main/704.%20Binary%20Search.py
724 Find Pivot Index https://leetcode.com/problems/find-pivot-index/
729 My Calendar I https://leetcode.com/problems/my-calendar-i/ https://github.com/s-suryakiran/leet-code-problems/blob/main/729.%20My%20Calendar%20I.py
733 Flood Fill https://leetcode.com/problems/flood-fill/ https://github.com/s-suryakiran/leet-code-problems/blob/main/733.%20Flood%20Fill.py
739 Daily Temperatures https://leetcode.com/problems/daily-temperatures/ https://github.com/s-suryakiran/leet-code-problems/blob/main/739.%20Daily%20Temperatures.cpp
746 Min Cost Climbing Stairs https://leetcode.com/problems/min-cost-climbing-stairs/ https://github.com/s-suryakiran/leet-code-problems/blob/main/746.%20Min%20Cost%20Climbing%20Stairs.py
823 Binary Trees With Factors https://leetcode.com/problems/binary-trees-with-factors/ https://github.com/s-suryakiran/leet-code-problems/blob/main/823.%20Binary%20Trees%20With%20Factors.py
853 Car Fleet https://leetcode.com/problems/car-fleet/ https://github.com/s-suryakiran/leet-code-problems/blob/main/853.%20Car%20Fleet.cpp
858 Mirror Reflection https://leetcode.com/problems/mirror-reflection/ https://github.com/s-suryakiran/leet-code-problems/blob/main/858.%20Mirror%20Reflection.py
876 Middle of the Linked List https://leetcode.com/problems/middle-of-the-linked-list/ https://github.com/s-suryakiran/leet-code-problems/blob/main/876.%20Middle%20of%20the%20Linked%20List.py
890 Find and Replace Pattern https://leetcode.com/problems/find-and-replace-pattern/ https://github.com/s-suryakiran/leet-code-problems/blob/main/890.%20Find%20and%20Replace%20Pattern.py
916 Word Subsets https://leetcode.com/problems/word-subsets/ https://github.com/s-suryakiran/leet-code-problems/blob/main/916.%20Word%20Subsets.py
933 Number of Recent Calls https://leetcode.com/problems/number-of-recent-calls/ https://github.com/s-suryakiran/leet-code-problems/blob/main/933.%20Number%20of%20Recent%20Calls.cpp
973 K Closest Points to Origin https://leetcode.com/problems/k-closest-points-to-origin/ https://github.com/s-suryakiran/leet-code-problems/blob/main/973.%20K%20Closest%20Points%20to%20Origin.py
994 Rotting Oranges https://leetcode.com/problems/rotting-oranges/ https://github.com/s-suryakiran/leet-code-problems/blob/main/994.%20Rotting%20Oranges.py
1004 Max Consecutive Ones III https://leetcode.com/problems/max-consecutive-ones-iii/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1004.%20Max%20Consecutive%20Ones%20III.cpp
1046 Last Stone Weight https://leetcode.com/problems/last-stone-weight/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1046.%20Last%20Stone%20Weight.py
1071 Greatest Common Divisor of Strings https://leetcode.com/problems/greatest-common-divisor-of-strings/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1071.%20Greatest%20Common%20Divisor%20of%20Strings.cpp
1207 Unique Number of Occurrences https://leetcode.com/problems/unique-number-of-occurrences/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1207.%20Unique%20Number%20of%20Occurrences.cpp
1220 Count Vowels Permutation https://leetcode.com/problems/count-vowels-permutation/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1220.%20Count%20Vowels%20Permutation.py
1334 Find the City With the Smallest Number of Neighbors at a Threshold Distance https://leetcode.com/problems/find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1334.%20Find%20the%20City%20With%20the%20Smallest%20Number%20of%20Neighbors%20at%20a%20Threshold%20Distance.cpp
1431 Kids With the Greatest Number of Candies https://leetcode.com/problems/kids-with-the-greatest-number-of-candies/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1431.%20Kids%20With%20the%20Greatest%20Number%20of%20Candies.cpp
1448 Count Good Nodes in Binary Tree https://leetcode.com/problems/count-good-nodes-in-binary-tree/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1448.%20Count%20Good%20Nodes%20in%20Binary%20Tree.py
1456 Maximum Number of Vowels in a Substring of Given Length https://leetcode.com/problems/maximum-number-of-vowels-in-a-substring-of-given-length/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1456.%20Maximum%20Number%20of%20Vowels%20in%20a%20Substring%20of%20Given%20Length.cpp
1480 Running Sum of 1d Array https://leetcode.com/problems/running-sum-of-1d-array/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1480.%20Running%20Sum%20of%201d%20Array.py
1493 Longest Subarray of 1's After Deleting One Element https://leetcode.com/problems/longest-subarray-of-1s-after-deleting-one-element/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1493.%20Longest%20Subarray%20of%201's%20After%20Deleting%20One%20Element.cpp
1519 Number of Nodes in the Sub-Tree With the Same Label https://leetcode.com/problems/number-of-nodes-in-the-sub-tree-with-the-same-label/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1519.%20Number%20of%20Nodes%20in%20the%20Sub-Tree%20With%20the%20Same%20Label.py
1560 Most Visited Sector in a Circular Track https://leetcode.com/problems/most-visited-sector-in-a-circular-track/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1560.%20Most%20Visited%20Sector%20in%20a%20Circular%20Track.cpp
1679 Max Number of K-Sum Pairs https://leetcode.com/problems/max-number-of-k-sum-pairs https://github.com/s-suryakiran/leet-code-problems/blob/main/1679.%20Max%20Number%20of%20K-Sum%20Pairs.cpp
1732 Find the Highest Altitude https://leetcode.com/problems/find-the-highest-altitude/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1732.%20Find%20the%20Highest%20Altitude.cpp
1768 Merge Strings Alternately https://leetcode.com/problems/merge-strings-alternately/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1768.%20Merge%20Strings%20Alternately.cpp
1851 Minimum Interval to Include Each Query https://leetcode.com/problems/minimum-interval-to-include-each-query/ https://github.com/s-suryakiran/leet-code-problems/blob/main/1851.%20Minimum%20Interval%20to%20Include%20Each%20Query.py
2215 Find the Difference of Two Arrays https://leetcode.com/problems/find-the-difference-of-two-arrays/ https://github.com/s-suryakiran/leet-code-problems/blob/main/2215.%20Find%20the%20Difference%20of%20Two%20Arrays.cpp
2279 Maximum Bags With Full Capacity of Rocks https://leetcode.com/problems/maximum-bags-with-full-capacity-of-rocks/ https://github.com/s-suryakiran/leet-code-problems/blob/main/2279.%20Maximum%20Bags%20With%20Full%20Capacity%20of%20Rocks.py

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •