Strings - Valid Anagram
Valid Anagram
Problem Link:
https://leetcode.com/problems/valid-anagram/description/
My approach:
I used the concept of hashing.
You can use hashmap or in this case just a simple array of size 26.
Iterate through 's' string and update hash array b...
nirbhaycodes.hashnode.dev1 min read