Day 2 - Valid Anagram
Question
Given two strings s and t, return true if the two strings are anagrams of each other, otherwise return false.
Example 1
Input: s = "racecar", t = "carrace"
Output: true
Example 2
Input: s = "jar", t = "jam"
Output: false
Understanding the qu...
blogs-himanshu.hashnode.dev3 min read