Your question is String Equivalence in Python. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
RTI Connext DDS applications may validate topic-related strings before configuring communication. Write a function that determines whether two strings are equivalent when character order is ignored.
Two strings are equivalent if they have the same length and every character appears the same number of times in both strings. Comparisons are case-sensitive, and spaces, punctuation, and other characters count like any other character.
Implement are_equivalent(s1, s2):
s1 and s2.True if the strings contain identical character frequencies, otherwise return False.def are_equivalent(s1, s2):