Search found 1 match

by pinky
Thu Feb 16, 2012 5:54 pm
Forum: Common Lisp
Topic: Loop through strings
Replies: 2
Views: 11967

Loop through strings

I need help to find the function which takes two arguments and returns a string with only the characters that are found in exactly one of the strings and with no character repeated. Example: If I give (stringll "goodbye" "oddly"), it shoul return "gbel" My code works wi...