René's URL Explorer Experiment


Title: Add team blind's curated list · Issue #28 · AlgorithmCrackers/Interview-Questions · GitHub

Open Graph Title: Add team blind's curated list · Issue #28 · AlgorithmCrackers/Interview-Questions

X Title: Add team blind's curated list · Issue #28 · AlgorithmCrackers/Interview-Questions

Description: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU Array Two Sum Easy Best Time to Buy and Sell Stock Easy Contains Duplicate Easy Product of Array Except Self Medium Maxim...

Open Graph Description: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU Array Two Sum Easy Best Time to Buy and Sell Stock Easy Contains Duplicate Easy P...

X Description: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU Array Two Sum Easy Best Time to Buy and Sell Stock Easy Contains Duplicate Easy P...

Opengraph URL: https://github.com/AlgorithmCrackers/Interview-Questions/issues/28

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Add team blind's curated list","articleBody":"https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU\r\n\r\n# Array\r\n\r\n- [x] [Two Sum](../blob/master/00_Arrays/coupleSum) `Easy`\r\n- [x] [Best Time to Buy and Sell Stock](../blob/master/00_Arrays/best-time-to-buy-and-sell-stock) `Easy`\r\n- [x] [Contains Duplicate](../blob/master/00_Arrays/ContainsDuplicate) `Easy`\r\n- [x] [Product of Array Except Self](../blob/master/00_Arrays/product-of-array-except-self) `Medium`\r\n- [x] [Maximum Subarray](../blob/master/00_Arrays/MaximumSubArray/) `Easy`\r\n- [x] [Maximum Product Subarray](../blob/master/00_Arrays/maximum-product-subarray) `Medium`\r\n- [x] [Find Minimum in Rotated Sorted Array](../blob/master/00_Arrays/find-minimum-in-rotated-sorted-array) `Medium`\r\n- [ ] Search in Rotated Sorted Array - https://leetcode.com/problems/search-in-rotated-sorted-array/\r\n- [ ] 3Sum - https://leetcode.com/problems/3sum/\r\n- [ ] Container With Most Water - https://leetcode.com/problems/container-with-most-water/\r\n\r\n# Binary\r\n\r\n- [ ] Sum of Two Integers - https://leetcode.com/problems/sum-of-two-integers/\r\n- [ ] Number of 1 Bits - https://leetcode.com/problems/number-of-1-bits/\r\n- [ ] Counting Bits - https://leetcode.com/problems/counting-bits/\r\n- [ ] Missing Number - https://leetcode.com/problems/missing-number/\r\n- [ ] Reverse Bits - https://leetcode.com/problems/reverse-bits/\r\n\r\n# Dynamic Programming\r\n\r\n- [ ] Climbing Stairs - https://leetcode.com/problems/climbing-stairs/\r\n- [ ] Coin Change - https://leetcode.com/problems/coin-change/\r\n- [ ] Longest Increasing Subsequence - https://leetcode.com/problems/longest-increasing-subsequence/\r\n- [ ] Longest Common Subsequence - https://leetcode.com/problems/longest-common-subsequence/\r\n- [ ] Word Break Problem - https://leetcode.com/problems/word-break/\r\n- [ ] Combination Sum - https://leetcode.com/problems/combination-sum-iv/\r\n- [ ] House Robber - https://leetcode.com/problems/house-robber/\r\n- [ ] House Robber II - https://leetcode.com/problems/house-robber-ii/\r\n- [ ] Decode Ways - https://leetcode.com/problems/decode-ways/\r\n- [ ] Unique Paths - https://leetcode.com/problems/unique-paths/\r\n- [ ] Jump Game - https://leetcode.com/problems/jump-game/\r\n\r\n# Graph\r\n\r\n- [ ] Clone Graph - https://leetcode.com/problems/clone-graph/\r\n- [ ] Course Schedule - https://leetcode.com/problems/course-schedule/\r\n- [ ] Pacific Atlantic Water Flow - https://leetcode.com/problems/pacific-atlantic-water-flow/\r\n- [ ] Number of Islands - https://leetcode.com/problems/number-of-islands/\r\n- [ ] Longest Consecutive Sequence - https://leetcode.com/problems/longest-consecutive-sequence/\r\n- [ ] Alien Dictionary (Leetcode Premium) - https://leetcode.com/problems/alien-dictionary/\r\n- [ ] Graph Valid Tree (Leetcode Premium) - https://leetcode.com/problems/graph-valid-tree/\r\n- [ ] Number of Connected Components in an Undirected Graph (Leetcode Premium) - https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/\r\n\r\n# Interval\r\n\r\n- [x] [Insert Interval](../blob/master/00_Arrays/insert-interval) `Hard`\r\n- [x] [Merge Intervals](../blob/master/00_Arrays/merge-intervals/) `Medium`\r\n- [ ] Non-overlapping Intervals - https://leetcode.com/problems/non-overlapping-intervals/\r\n- [ ] Meeting Rooms (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms/\r\n- [ ] Meeting Rooms II (Leetcode Premium) - https://leetcode.com/problems/meeting-rooms-ii/\r\n\r\n# Linked List\r\n\r\n- [x] [Reverse a Linked List](../blob/master/02_LinkedLists/reverse-linked-list) `Easy`\r\n- [ ] Detect Cycle in a Linked List - https://leetcode.com/problems/linked-list-cycle/\r\n- [x] [Merge Two Sorted Lists](../blob/master/02_LinkedLists/merge-two-sorted-lists) `Easy`\r\n- [x] [Merge K Sorted Lists](../blob/master/02_LinkedLists/merge-k-sorted-lists) `Hard`\r\n- [ ] Remove Nth Node From End Of List - https://leetcode.com/problems/remove-nth-node-from-end-of-list/\r\n- [ ] Reorder List - https://leetcode.com/problems/reorder-list/\r\n\r\n# Matrix\r\n\r\n- [x] [Set Matrix Zeroes](../blob/master/00_Arrays/set-matrix-zeroes) `Medium`\r\n- [ ] Spiral Matrix - https://leetcode.com/problems/spiral-matrix/\r\n- [x] [Rotate Image](../blob/master/00_Arrays//rotate-image/) `Medium`\r\n- [ ] Word Search - https://leetcode.com/problems/word-search/\r\n\r\n# String\r\n\r\n- [x] [Longest Substring Without Repeating Characters](../blob/master/01_Strings/longest-substring-without-repeating-characters) `Medium`\r\n- [ ] Longest Repeating Character Replacement - https://leetcode.com/problems/longest-repeating-character-replacement/\r\n- [ ] Minimum Window Substring - https://leetcode.com/problems/minimum-window-substring/\r\n- [x] [Valid Anagram](../blob/master/01_Strings/isAnagram) `Easy`\r\n- [ ] Group Anagrams - https://leetcode.com/problems/group-anagrams/\r\n- [ ] Valid Parentheses - https://leetcode.com/problems/valid-parentheses/\r\n- [ ] Valid Palindrome - https://leetcode.com/problems/valid-palindrome/\r\n- [ ] Longest Palindromic Substring - https://leetcode.com/problems/longest-palindromic-substring/\r\n- [ ] Palindromic Substrings - https://leetcode.com/problems/palindromic-substrings/\r\n- [ ] Encode and Decode Strings (Leetcode Premium) - https://leetcode.com/problems/encode-and-decode-strings/\r\n\r\n# Tree\r\n\r\n- [x] [Maximum Depth of Binary Tree](../blob/master/04_Trees_and_Graphs/maximum-depth-of-binary-tree) `Easy`\r\n- [x] [Same Tree](../blob/master/04_Trees_and_Graphs/sameTree) `Easy`\r\n- [x] [Invert/Flip Binary Tree](../blob/master/04_Trees_and_Graphs/invert-binary-tree/) `Easy`\r\n- [ ] Binary Tree Maximum Path Sum - https://leetcode.com/problems/binary-tree-maximum-path-sum/\r\n- [ ] Binary Tree Level Order Traversal - https://leetcode.com/problems/binary-tree-level-order-traversal/\r\n- [ ] Serialize and Deserialize Binary Tree - https://leetcode.com/problems/serialize-and-deserialize-binary-tree/\r\n- [ ] Subtree of Another Tree - https://leetcode.com/problems/subtree-of-another-tree/\r\n- [ ] Construct Binary Tree from Preorder and Inorder Traversal - https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/\r\n- [ ] Validate Binary Search Tree - https://leetcode.com/problems/validate-binary-search-tree/\r\n- [ ] Kth Smallest Element in a BST - https://leetcode.com/problems/kth-smallest-element-in-a-bst/\r\n- [ ] Lowest Common Ancestor of BST - https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/\r\n- [ ] Implement Trie (Prefix Tree) - https://leetcode.com/problems/implement-trie-prefix-tree/\r\n- [ ] Add and Search Word - https://leetcode.com/problems/add-and-search-word-data-structure-design/\r\n- [ ] Word Search II - https://leetcode.com/problems/word-search-ii/\r\n\r\n# Heap\r\n\r\n- [ ] Merge K Sorted Lists - https://leetcode.com/problems/merge-k-sorted-lists/\r\n- [ ] Top K Frequent Elements - https://leetcode.com/problems/top-k-frequent-elements/\r\n- [ ] Find Median from Data Stream - https://leetcode.com/problems/find-median-from-data-stream/\r\n","author":{"url":"https://github.com/santhoshvai","@type":"Person","name":"santhoshvai"},"datePublished":"2020-01-04T22:12:31.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/28/Interview-Questions/issues/28"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:57318f12-2c26-5cde-e4d0-3a59d563ab00
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC9F4:100F11:4D27CB:688207:6977C736
html-safe-noncea1fe10ce3c293396c474a6476589bf01822bdac7f8e088ade587c88196b79121
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDOUY0OjEwMEYxMTo0RDI3Q0I6Njg4MjA3OjY5NzdDNzM2IiwidmlzaXRvcl9pZCI6IjcwOTY2NjcyNDA1Mzg4MTgzNTgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac74f904e17c079e42050a54cf676e1e563a4c928fee5453567c12ef6fd9f5cb29
hovercard-subject-tagissue:545338753
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/AlgorithmCrackers/Interview-Questions/28/issue_layout
twitter:imagehttps://opengraph.githubassets.com/d1e3f762e3449fc2c760f0f960a2d815103b4ae59f3bf898f4582fda79670122/AlgorithmCrackers/Interview-Questions/issues/28
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/d1e3f762e3449fc2c760f0f960a2d815103b4ae59f3bf898f4582fda79670122/AlgorithmCrackers/Interview-Questions/issues/28
og:image:althttps://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU Array Two Sum Easy Best Time to Buy and Sell Stock Easy Contains Duplicate Easy P...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamesanthoshvai
hostnamegithub.com
expected-hostnamegithub.com
Nonedd7783bd9901db88bac6bc215af7f020bc205a04ebc67e6c7def882ef2859ecd
turbo-cache-controlno-preview
go-importgithub.com/AlgorithmCrackers/Interview-Questions git https://github.com/AlgorithmCrackers/Interview-Questions.git
octolytics-dimension-user_id7671025
octolytics-dimension-user_loginAlgorithmCrackers
octolytics-dimension-repository_id26155198
octolytics-dimension-repository_nwoAlgorithmCrackers/Interview-Questions
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id26155198
octolytics-dimension-repository_network_root_nwoAlgorithmCrackers/Interview-Questions
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release5d30081a77a5d66860584073cb38fd98fd7f9388
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/issues/28#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FAlgorithmCrackers%2FInterview-Questions%2Fissues%2F28
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FAlgorithmCrackers%2FInterview-Questions%2Fissues%2F28
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=AlgorithmCrackers%2FInterview-Questions
Reloadhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/issues/28
Reloadhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/issues/28
Reloadhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/issues/28
AlgorithmCrackers https://patch-diff.githubusercontent.com/AlgorithmCrackers
Interview-Questionshttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FAlgorithmCrackers%2FInterview-Questions
Fork 124 https://patch-diff.githubusercontent.com/login?return_to=%2FAlgorithmCrackers%2FInterview-Questions
Star 248 https://patch-diff.githubusercontent.com/login?return_to=%2FAlgorithmCrackers%2FInterview-Questions
Code https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions
Issues 7 https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/issues
Pull requests 1 https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/pulls
Actions https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/actions
Projects 0 https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/projects
Wiki https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/wiki
Security 0 https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/security
Insights https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/pulse
Code https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions
Issues https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/issues
Pull requests https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/pulls
Actions https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/actions
Projects https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/projects
Wiki https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/wiki
Security https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/security
Insights https://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/AlgorithmCrackers/Interview-Questions/issues/28
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/AlgorithmCrackers/Interview-Questions/issues/28
Add team blind's curated listhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/issues/28#top
https://patch-diff.githubusercontent.com/santhoshvai
EpicA big addition to the repo, usually a project by itselfhttps://github.com/AlgorithmCrackers/Interview-Questions/issues?q=state%3Aopen%20label%3A%22Epic%22
https://github.com/santhoshvai
https://github.com/santhoshvai
santhoshvaihttps://github.com/santhoshvai
on Jan 4, 2020https://github.com/AlgorithmCrackers/Interview-Questions/issues/28#issue-545338753
https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEUhttps://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU
Two Sumhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/coupleSum
Best Time to Buy and Sell Stockhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/best-time-to-buy-and-sell-stock
Contains Duplicatehttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/ContainsDuplicate
Product of Array Except Selfhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/product-of-array-except-self
Maximum Subarrayhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/MaximumSubArray/
Maximum Product Subarrayhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/maximum-product-subarray
Find Minimum in Rotated Sorted Arrayhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/find-minimum-in-rotated-sorted-array
https://leetcode.com/problems/search-in-rotated-sorted-array/https://leetcode.com/problems/search-in-rotated-sorted-array/
https://leetcode.com/problems/3sum/https://leetcode.com/problems/3sum/
https://leetcode.com/problems/container-with-most-water/https://leetcode.com/problems/container-with-most-water/
https://leetcode.com/problems/sum-of-two-integers/https://leetcode.com/problems/sum-of-two-integers/
https://leetcode.com/problems/number-of-1-bits/https://leetcode.com/problems/number-of-1-bits/
https://leetcode.com/problems/counting-bits/https://leetcode.com/problems/counting-bits/
https://leetcode.com/problems/missing-number/https://leetcode.com/problems/missing-number/
https://leetcode.com/problems/reverse-bits/https://leetcode.com/problems/reverse-bits/
https://leetcode.com/problems/climbing-stairs/https://leetcode.com/problems/climbing-stairs/
https://leetcode.com/problems/coin-change/https://leetcode.com/problems/coin-change/
https://leetcode.com/problems/longest-increasing-subsequence/https://leetcode.com/problems/longest-increasing-subsequence/
https://leetcode.com/problems/longest-common-subsequence/https://leetcode.com/problems/longest-common-subsequence/
https://leetcode.com/problems/word-break/https://leetcode.com/problems/word-break/
https://leetcode.com/problems/combination-sum-iv/https://leetcode.com/problems/combination-sum-iv/
https://leetcode.com/problems/house-robber/https://leetcode.com/problems/house-robber/
https://leetcode.com/problems/house-robber-ii/https://leetcode.com/problems/house-robber-ii/
https://leetcode.com/problems/decode-ways/https://leetcode.com/problems/decode-ways/
https://leetcode.com/problems/unique-paths/https://leetcode.com/problems/unique-paths/
https://leetcode.com/problems/jump-game/https://leetcode.com/problems/jump-game/
https://leetcode.com/problems/clone-graph/https://leetcode.com/problems/clone-graph/
https://leetcode.com/problems/course-schedule/https://leetcode.com/problems/course-schedule/
https://leetcode.com/problems/pacific-atlantic-water-flow/https://leetcode.com/problems/pacific-atlantic-water-flow/
https://leetcode.com/problems/number-of-islands/https://leetcode.com/problems/number-of-islands/
https://leetcode.com/problems/longest-consecutive-sequence/https://leetcode.com/problems/longest-consecutive-sequence/
https://leetcode.com/problems/alien-dictionary/https://leetcode.com/problems/alien-dictionary/
https://leetcode.com/problems/graph-valid-tree/https://leetcode.com/problems/graph-valid-tree/
https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/
Insert Intervalhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/insert-interval
Merge Intervalshttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/merge-intervals/
https://leetcode.com/problems/non-overlapping-intervals/https://leetcode.com/problems/non-overlapping-intervals/
https://leetcode.com/problems/meeting-rooms/https://leetcode.com/problems/meeting-rooms/
https://leetcode.com/problems/meeting-rooms-ii/https://leetcode.com/problems/meeting-rooms-ii/
Reverse a Linked Listhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/02_LinkedLists/reverse-linked-list
https://leetcode.com/problems/linked-list-cycle/https://leetcode.com/problems/linked-list-cycle/
Merge Two Sorted Listshttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/02_LinkedLists/merge-two-sorted-lists
Merge K Sorted Listshttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/02_LinkedLists/merge-k-sorted-lists
https://leetcode.com/problems/remove-nth-node-from-end-of-list/https://leetcode.com/problems/remove-nth-node-from-end-of-list/
https://leetcode.com/problems/reorder-list/https://leetcode.com/problems/reorder-list/
Set Matrix Zeroeshttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/set-matrix-zeroes
https://leetcode.com/problems/spiral-matrix/https://leetcode.com/problems/spiral-matrix/
Rotate Imagehttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/00_Arrays/rotate-image/
https://leetcode.com/problems/word-search/https://leetcode.com/problems/word-search/
Longest Substring Without Repeating Charactershttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/01_Strings/longest-substring-without-repeating-characters
https://leetcode.com/problems/longest-repeating-character-replacement/https://leetcode.com/problems/longest-repeating-character-replacement/
https://leetcode.com/problems/minimum-window-substring/https://leetcode.com/problems/minimum-window-substring/
Valid Anagramhttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/01_Strings/isAnagram
https://leetcode.com/problems/group-anagrams/https://leetcode.com/problems/group-anagrams/
https://leetcode.com/problems/valid-parentheses/https://leetcode.com/problems/valid-parentheses/
https://leetcode.com/problems/valid-palindrome/https://leetcode.com/problems/valid-palindrome/
https://leetcode.com/problems/longest-palindromic-substring/https://leetcode.com/problems/longest-palindromic-substring/
https://leetcode.com/problems/palindromic-substrings/https://leetcode.com/problems/palindromic-substrings/
https://leetcode.com/problems/encode-and-decode-strings/https://leetcode.com/problems/encode-and-decode-strings/
Maximum Depth of Binary Treehttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/04_Trees_and_Graphs/maximum-depth-of-binary-tree
Same Treehttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/04_Trees_and_Graphs/sameTree
Invert/Flip Binary Treehttps://patch-diff.githubusercontent.com/AlgorithmCrackers/Interview-Questions/blob/master/04_Trees_and_Graphs/invert-binary-tree/
https://leetcode.com/problems/binary-tree-maximum-path-sum/https://leetcode.com/problems/binary-tree-maximum-path-sum/
https://leetcode.com/problems/binary-tree-level-order-traversal/https://leetcode.com/problems/binary-tree-level-order-traversal/
https://leetcode.com/problems/serialize-and-deserialize-binary-tree/https://leetcode.com/problems/serialize-and-deserialize-binary-tree/
https://leetcode.com/problems/subtree-of-another-tree/https://leetcode.com/problems/subtree-of-another-tree/
https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/
https://leetcode.com/problems/validate-binary-search-tree/https://leetcode.com/problems/validate-binary-search-tree/
https://leetcode.com/problems/kth-smallest-element-in-a-bst/https://leetcode.com/problems/kth-smallest-element-in-a-bst/
https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/
https://leetcode.com/problems/implement-trie-prefix-tree/https://leetcode.com/problems/implement-trie-prefix-tree/
https://leetcode.com/problems/add-and-search-word-data-structure-design/https://leetcode.com/problems/add-and-search-word-data-structure-design/
https://leetcode.com/problems/word-search-ii/https://leetcode.com/problems/word-search-ii/
https://leetcode.com/problems/merge-k-sorted-lists/https://leetcode.com/problems/merge-k-sorted-lists/
https://leetcode.com/problems/top-k-frequent-elements/https://leetcode.com/problems/top-k-frequent-elements/
https://leetcode.com/problems/find-median-from-data-stream/https://leetcode.com/problems/find-median-from-data-stream/
santhoshvaihttps://patch-diff.githubusercontent.com/santhoshvai
EpicA big addition to the repo, usually a project by itselfhttps://github.com/AlgorithmCrackers/Interview-Questions/issues?q=state%3Aopen%20label%3A%22Epic%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.