Problem:
Given two strings, check whether two given strings are an anagram of each other or not. An anagram of a string is another string that contains same characters, only the order of characters can be different. For example, “act” and “tac” are an anagram of each other.
This video is part of the "Technical Interview Problems" series on various problems that arise in a technical interview setting. The solutions in this series focus on the Python language:
https://goo.gl/nM8M5B
The code used in this video may be found here:
https://github.com/vprusso/youtube_tu...
Website:
http://vprusso.github.io/