2つ以上の等しい長さの2つ以上のスペルアウトされたシリアル番号のリストがある場合、たとえば
[[ "three" , "one" , "four" ],
[ "one" , "five" , "nine" ],
[ "two" , "six" , "five" ],
[ "three" , "five" , "eight" ]]
単語が表す数字でリストをソートします。
[[ "one" , "five" , "nine" ],
[ "two" , "six" , "five" ],
[ "three" , "one" , "four" ],
[ "three" , "five" , "eight" ]]
数字の大文字と小文字を区別する必要がありますが、大文字と小文字を混在させることはできません。
テストケース
[["three","one","four"],["one","five","nine"],["two","six","five"],["three","five","eight"]]
与える[["one","five","nine"],["two","six","five"],["three","one","four"],["three","five","eight"]]
[["two","seven"],["one","eight"],["two","eight"],["one","eight"],["two","eight"],["four","five"]]
与える[["one","eight"],["one","eight"],["two","seven"],["two","eight"],["two","eight"],["four","five"]]
[["one","four","one","four","two"],["one","three","five","six","two"],["three","seven","three","zero","nine"]]
与える[["one","three","five","six","two"],["one","four","one","four","two"],["three","seven","three","zero","nine"]]
[["zero","six","one"],["eight","zero","three"],["three","nine","eight"],["eight","seven","four"],["nine","eight","nine"],["four","eight","four"]]
与える[["zero","six","one"],["three","nine","eight"],["four","eight","four"],["eight","zero","three"],["eight","seven","four"],["nine","eight","nine"]]
[314,159,265,358]
→ [159,265,314,358]
。
You may require the numbers to be spelled in lower or upper, but not mixed, case.
["three","one","four"] === 314
かどうかわかりませんか?