About 50 results
Open links in new tab
  1. JAVA QUESTIONS 50 - LeetCode

    Copyright © 2026 LeetCode Help Center Jobs Bug Bounty Assessment Students Terms Privacy Policy United States

  2. LeetCode - The World's Leading Online Programming Learning Platform

    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.

  3. Permutations - LeetCode

    Can you solve this real interview question? Permutations - Given an array nums of distinct integers, return all the possible permutations. You can return the answer ...

  4. Sort Characters By Frequency - LeetCode

    Can you solve this real interview question? Sort Characters By Frequency - Given a string s, sort it in decreasing order based on the frequency of the characters. The frequency of a character is the …

  5. Single Element in a Sorted Array - LeetCode

    Can you solve this real interview question? Single Element in a Sorted Array - You are given a sorted array consisting of only integers where every element appears exactly twice, except for one element …

  6. String to Integer (atoi) - LeetCode

    1. Please don't post any solutions in this discussion. 2. The problem discussion is for asking questions about the problem or for sharing tips - anything except for solutions. 3. If you'd like to share your …

  7. Min Stack - LeetCode

    Can you solve this real interview question? Min Stack - Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. Implement the MinStack class: * MinStack() …

  8. Duplicate Zeros - LeetCode

    Can you solve this real interview question? Duplicate Zeros - Given a fixed-length integer array arr, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements …

  9. LRU Cache - LeetCode

    1. Please don't post any solutions in this discussion. 2. The problem discussion is for asking questions about the problem or for sharing tips - anything except for solutions. 3. If you'd like to share your …

  10. 3Sum - LeetCode

    So, we essentially need to find three numbers x, y, and z such that they add up to the given value. If we fix one of the numbers say x, we are left with the two-sum problem at hand!