Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen RevisionVorhergehende Überarbeitung | |||
markow:the_most_wanted_letter [2017/09/05 22:54] – alte Version wiederhergestellt (2017/09/05 22:51) Tscherter, Vincent | markow:the_most_wanted_letter [2019/08/25 23:03] (aktuell) – Externe Bearbeitung 127.0.0.1 | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
+ | ====== The Most Wanted Letter ====== | ||
+ | {{ : | ||
+ | |||
+ | You are given a text, which contains different english letters and punctuation symbols. You should find the most frequent letter in the text. The letter returned must be in lower case. | ||
+ | While checking for the most wanted letter, casing does not matter, so for the purpose of your search, '' | ||
+ | |||
+ | If you have two or more letters with the same frequency, then return the letter which comes first in the latin alphabet. For example -- '' | ||
+ | |||
+ | == Examples == | ||
+ | ^ Input ^ Output | | ||
+ | | '' | ||
+ | | '' | ||
+ | | '' | ||
+ | | '' | ||
+ | | '' | ||
+ | | '' | ||
+ | |||
+ | == Solution == | ||
+ | <code text>/ | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | /ζ//g ! | ||
+ | /(.)/ζ$1/g </ | ||
+ | |||