最高和弦
给定输入字符串,请返回其每个Unicode字符的总和最高的单词。
规则
- 输入应以空格分隔
- 每个单词的值基于单词的UTF-16代码中每个字符的总和
- 输出应该是具有最高值的第一个单词(如果有重复的总和)
例子
Input: "a b c d e"
Output: "e"
Input: "hello world"
Output: "world"
Input: "this is a test"
Output: "test"
Input: "àà as a test"
Output: "àà"
Input "α ää"
Output: "α"
Input: "🍬 隣隣隣"
Output: "隣隣隣"
Input: "💀 👻 🤡 🦇 🕷️ 🍬 🎃"
Output: "🕷️"
这是代码高尔夫,所以最短的答案会成功!祝好运 :)