Same Tile Bank
In a Scrabble-style word game you have two letter strings, `a` and `b`. Check whether `b` can be built using EXACTLY the same tiles (letters) as `a` — no fewer, no more. The function receives two lowercase-letter strings and returns True if they are anagrams of each other, else False.
In a Scrabble-style word game you have two letter strings, `a` and `b`. Check whether `b` can be built using EXACTLY the same tiles (letters) as `a` — no fewer, no more. The function receives two lowercase-letter strings and returns True if they are anagrams of each other, else False.