Write a function that checks if two strings are anagrams using Counter
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Write a function that checks if two strings are anagrams using Counter. Test with ('listen', 'silent') and ('hello', 'world'). Print True/False for each.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.