Objective
Implement same_character_bag, a strict permutation checker for two strings.
Steps
$ same_character_bag("study hall", "dusty hall")
True
$ same_character_bag("Cat", "cat")
False
Expected files
Allowed functions
None. Write every helper yourself.

Objective
Implement same_character_bag, a strict permutation checker for two strings.
Steps
$ same_character_bag("study hall", "dusty hall")
True
$ same_character_bag("Cat", "cat")
False
Expected files
Allowed functions
None. Write every helper yourself.

Tests
Run the tests to grade your code