Add examples

This commit is contained in:
Jessica Kwok 2021-05-14 16:53:05 -07:00
parent 4bd9206f01
commit a591b2fd56

View file

@ -45,4 +45,8 @@ def find_uncommon_words(strA, strB)
result
end
puts find_uncommon_words("this apple is sweet", "this apple is sour")
puts find_uncommon_words("this apple is sweet", "this apple is sour")
# => ["sweet", "sour"]
puts find_uncommon_words("apple apple", "banana")
# => ["banana"]