Est-ce votre entreprise ?
Write a function that prints common chars from 2 strings in run time N
Utilisateur anonyme
iterate over the 1st string, inserting each char into a dictionary, then iterate over the 2nd string and print every char that's already in the dictionary.