最高値文字列
入力文字列を指定すると、各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: "🕷️"
これはコードゴルフですので、最短の答えが勝ちです!幸運を :)