Tags | skill/problem_solving |
Hard Prerequisites | |
IMPORTANT: Please review these prerequisites, they include important information that will help you with this content. | |
|
Make a function that takes two strings as input, and print the common letters that they share.
The printed letters should:
Example usage:
task10("House","computers")
should print e, o, s and u
exactly. If it prints eosu
then that would be incorrect.task10("Hi","there")
should print h
task10("Foo","bar")
should print no common letters