Add examples

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

View file

@ -46,3 +46,7 @@ def find_uncommon_words(strA, strB)
end
puts find_uncommon_words("this apple is sweet", "this apple is sour")
# => ["sweet", "sour"]
puts find_uncommon_words("apple apple", "banana")
# => ["banana"]