
53. Maximum Subarray - LeetCode
Can you solve this real interview question? Maximum Subarray - Given an integer array nums, find the subarray with the largest sum, and return its sum. Example 1: Input: nums = [-2,1,-3,4, …
Maximum Product Subarray - LeetCode
Can you solve this real interview question? Maximum Product Subarray - Given an integer array nums, find a subarray that has the largest product, and return the product. The test cases are …
Maximum XOR of Two Numbers in an Array - LeetCode
Given an integer array nums, return the maximum result of nums[i] XOR nums[j], where 0 <= i <= j < n. Example 1: Input: nums = [3,10,5,25,2,8] Output: 28 Explanation: The maximum result is …
Climbing Stairs - LeetCode
Accepted 4,649,970 / 8.7M Acceptance Rate 53.7 % Topics Math Dynamic Programming Memoization Companies
Divide and Conquer - 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.
Best Time to Buy and Sell Stock II - LeetCode
Can you solve this real interview question? Best Time to Buy and Sell Stock II - You are given an integer array prices where prices[i] is the price of a given stock on the ith day. On each day, …
Concatenation of Array - LeetCode
Can you solve this real interview question? Concatenation of Array - Given an integer array nums of length n, you want to create an array ans of length 2n where ans[i] == nums[i] and ans[i + n] …
Maximum Sum Circular Subarray - LeetCode
Can you solve this real interview question? Maximum Sum Circular Subarray - Given a circular integer array nums of length n, return the maximum possible sum of a non-empty subarray of …
LeetCode - The World's Leading Online Programming Learning …
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.
Sliding Window Maximum - LeetCode
Can you solve this real interview question? Sliding Window Maximum - You are given an array of integers nums, there is a sliding window of size k which is moving from the very left of the …