Advertisement
andewK

Untitled

Aug 2nd, 2023
956
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | Source Code | 0 0
  1. from collections import Counter
  2. def scramble(first: str, second: str):
  3.     return Counter(first) >= Counter(second)
  4.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement