Strings - Isomorphic Strings
Isomorphic Strings
Problem Link:
https://leetcode.com/problems/isomorphic-strings/description/
My approach:
We have to do bi-directional mapping so I used two hashmaps.
Code:
// TIME COMPLEXITY : O(N)
// SPACE COMPLEXITY : O(1) , Hashmaps will never ...
nirbhaycodes.hashnode.dev1 min read