Implement a suggestion function that generates alternative strings for given password strings like "facebook" => "F@ceß00k" and "fæc€Bo0K" or sth.
Utilisateur anonyme
// Assumption is that we have two dictionaries populated // First dictionary is a conversion from all common symbols/chars, to a common base char // Second dictionary is all the related chars to the common base chars class Suggestor { Map BaseChars; Map CharGenerator; string suggest(string str) { for (int i=0;i