编写一个程序或函数,将一个数字电话号码翻译成文字,这样就容易说了。当数字被重复时,它们应该被理解为“双n”或“三重n”。
一串数字。
用空格隔开的单词,如何大声读出这些数字。
具有最少字节的源代码。
input output
-------------------
0123 oh one two three
4554554 four double five four double five four
000 triple oh
00000 double oh triple oh
66667888 double six double six seven triple eight
19999999179 one double nine double nine triple nine one seven nine
发布于 2019-08-12 22:10:04
{Switch[L=Tr[1^{##}],1," ",3," triple ",_," double "],If[#<1,"oh",IntegerName@#],If[L>3,#0@##3,""]}&@@@Split@#<>""&
将数字列表作为输入。输出包括一个前导空间。
发布于 2019-08-13 12:28:45
发布于 2019-08-13 00:24:44
明白了。不知怎么的,我试图构建的递归版本比这个版本要冗长得多(虽然仍然是递归的,但只有一个例子)。函数f
将电话号码作为输入字符串,并以尾随空格输出其语音。
var u="oh one two three four five six seven eight nine" split " "
"(.)\\1*".r.replaceAllIn(s,x=>{var o=x.matched
var k=u(o(0)-48)+" "
o.length match{case 3=>"triple "+k
case 1=>k
case _=>"double "+k+f(o drop 2)}})
编辑:-8b感谢DrY Wit!
现在出现了领先的空白版本,由于某种原因(即使是大规模重构),会增加两个字节。
var u="oh one two three four five six seven eight nine" split " "
"(.)\\1*".r.replaceAllIn(s,x=>{var o=x.matched
var k=u(o(0)-48)
" , double , triple ".split(",")(if(o.length>3){k+=f(o drop 2);1}else o.length-1)+k})
https://codegolf.stackexchange.com/questions/189859
复制