Explore - LeetCode Level up your coding skills and quickly land a job This is the best place to expand your knowledge and get prepared for your next interview
Contest - LeetCode Enhance your coding abilities and get valuable real-world feedback by participating in contests on LeetCode You can also win up to 5000 LeetCoins per contest, as well as bonus prizes from sponsored companies
Login - LeetCode Login to LeetCode Online Interview Login with LeetCode account or register
Array - LeetCode Level up your coding skills and quickly land a job This is the best place to expand your knowledge and get prepared for your next interview
String - LeetCode Level up your coding skills and quickly land a job This is the best place to expand your knowledge and get prepared for your next interview
Blind 75 - LeetCode Level up your coding skills and quickly land a job This is the best place to expand your knowledge and get prepared for your next interview
Valid Parentheses - LeetCode Can you solve this real interview question? Valid Parentheses - Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid An input string is valid if: 1 Open brackets must be closed by the same type of brackets 2 Open brackets must be closed in the correct order 3 Every close bracket has a corresponding open bracket of the
LRU Cache - LeetCode Design a data structure that follows the constraints of a Least Recently Used (LRU) cache Implement the LRUCache class: LRUCache(int capacity) Initialize the LRU cache with positive size capacity int get(int key) Return the value of the key if the key exists, otherwise return -1 void put(int key, int value) Update the value of the key if the key exists Otherwise, add the key-value pair to