İki veya daha fazla eşit uzunlukta iki veya daha fazla hecelenmiş seri numarasının bir listesi verildiğinde, ör.
[[ "three" , "one" , "four" ],
[ "one" , "five" , "nine" ],
[ "two" , "six" , "five" ],
[ "three" , "five" , "eight" ]]
listeyi kelimelerin temsil ettiği rakamlara göre sıralayın:
[[ "one" , "five" , "nine" ],
[ "two" , "six" , "five" ],
[ "three" , "one" , "four" ],
[ "three" , "five" , "eight" ]]
Sayıların altta veya üstte yazılmasını, ancak karışık olmamasını isteyebilirsiniz.
Test senaryoları
[["three","one","four"],["one","five","nine"],["two","six","five"],["three","five","eight"]]
verir[["one","five","nine"],["two","six","five"],["three","one","four"],["three","five","eight"]]
[["two","seven"],["one","eight"],["two","eight"],["one","eight"],["two","eight"],["four","five"]]
verir[["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"]]
verir[["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"]]
verir[["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
mi?