The Most Wanted Letter

The Most Wanted Letter

你会得到一个文本,其中包含不同的英文字母和标点符号。 你应该找出文本中出现频率最高的字母。返回的字母必须是小写字母。
在检查最想要的字母时,大小写并不重要,所以为了你的搜索目的、 "A" == "a"。 确保你不计算标点符号、数字和空白处,只计算字母。

example

如果你有两个或多个频率相同的字母、 那么返回在拉丁字母表中排在第一位的字母。 例如 -- "one "包含 "o"、"n"、"e "各一次,因此我们选择 "e"。

输入:一个用于分析的字符串的文本 (string).

输出:小写字母中出现频率最高的字母为一个字符串 (string).

例子:

assert.strictEqual(mostWanted("Hello World!"), "l");
assert.strictEqual(mostWanted("How...
You should be an authorized user in order to see the full description and start solving this mission.
19