Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 1.21 KB

File metadata and controls

23 lines (12 loc) · 1.21 KB

JavaScript DSA Sheet by Kumar Sumit

This is a list of DSA questions made in JavaScript.

🔗 Links

  • LeetCode Question Links

    • 1 : Hamming Distance #461

      • Description: The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Given two integers x and y, calculate the Hamming distance.
      • Difficulty: Easy
      • Solution: Link to Solution
    • 2 : Valid Anagram #242

      • Description: The "Valid Anagram" problem is a classic algorithmic question. Given two strings s and t, determine if t is an anagram of s.An anagram is a word or phrase formed by rearranging the letters of another. In this context, you are asked to determine if t is an anagram of s, meaning that it uses the same characters but can be arranged differently.
      • Difficulty: Easy
      • Solution: Link to Solution