Solution to Cassidoo's Week of July 31, 2023 Challenge
Given two strings s and t, return true if t is an anagram of s, and false otherwise. Try this in a language you're not comfortable with!
Realized there were a couple edge cases, like with anagrams involving differences in several words, but are still valid. Adjusted accordingly.
Never wrote anything in Python before, but besides being able to look up equivalent php functions in python, it was thankfully pretty one-to-one conversion.