You are viewing a single comment's thread. Return to all comments →
python O(n + m) time O(n) space:
def twoStrings(s1, s2): strset = set(s1) for c in s2: if c in strset: return "YES" return "NO"
Seems like cookies are disabled on this browser, please enable them to open this website
Two Strings
You are viewing a single comment's thread. Return to all comments →
python O(n + m) time O(n) space: