키패드 코드를 텍스트로!


14

문자열과 배열을 입력으로 받으면 일반적인 모바일 키패드에서 입력 할 때 입력 문자열이 인쇄 할 텍스트를 출력해야합니다. 모바일 키패드에서 버튼을 n 번 누르면 문자가 입력됩니다. 여기서 n은 버튼의 레이블에서 문자가있는 위치입니다. 따라서 22출력해야합니다 b.

키패드


규칙

  • 도우미 배열에는 문자표 ( [" ",".,!","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"]) 가 포함됩니다 . 이것은 약간의 바이트를 절약하기 위해 제공됩니다.

  • #기호는 사건을 전환됩니다. 초기 사례는 더 낮습니다. 그래서 2#3출력해야한다 aD.

  • 0공간을 추가합니다. 따라서 202출력해야합니다 a a.

  • 입력 문자열에 공백 ( )이있어 동일한 숫자 버튼에있는 새 문자를 시작할 수 있습니다. 예를 입력 aa하려면 입력 문자열이됩니다 2 2.

  • 입력 문자열이 항상 유효한 키패드 코드임을 보증합니다.


입력

언어가 지원하는 방식으로 입력 할 수 있습니다.


산출

원하는 방식으로 결과를 출력 할 수 있습니다. 기능 return도 허용됩니다.


테스트 사례

#4440555#666888330#999#66688111 -> "I Love You!"
#6#33777 7779990#222#4477744477778627777111 -> "Merry Christmas!"
#44#27 79990#66#3390#999#332777111 -> "Happy New Year!"


이것은 이므로 바이트 단위의 가장 짧은 코드가 이깁니다!



4
나는에 총액 생각하는 year마지막 테스트 케이스의 잘못입니다.
Maltysen

1
루핑을 고려해야합니까? 예를 들어, 2222-> 잘못된 또는 2222-> b?
Kuilin Li

@ Maltysen 네, 맞습니다. 질문을 편집했습니다. 지적 해 주셔서 감사합니다. :)
Arjun

관심 ##이 없으면 이중 공간을 처리해야합니까?
Neil

답변:



3

자바 스크립트, 105 99 바이트

f=
(s,a)=>s.replace(/#| ?((.)\2*)/g,(m,n,d)=>d?(l=a[d][n.length-1],x?l:l.toUpperCase()):(x=!x,''),x=1)

a=['  ','.,!','abc','def','ghi','jkl','mno','pqrs','tuv','wxyz']

F=s=>console.log( f(s,a) )
F('#4440555#666888330#999#66688111')
F('#6#33777 7779990#222#4477744477778627777111');
F('#44#27 79990#66#3390#999#332777111');

  • @Neil 덕분에 6 바이트가 떨어져 있습니다.

문자를 임시 (예 :)에 저장 l한 다음을 사용하여 바이트를 절약 할 수 있습니다 c?l:l.toUpperCase().

@ 닐. 배열이 이미 소문자 인 것을 고려하면 ... thanks :)
Washington Guedes

2

Perl 6 ,  119  97 바이트

지도 기반 솔루션 119 바이트

->$_,\a{my$u=0;[~] map {/'#'/??{$u+^=1;|()}()!!(&lc,&uc)[$u](a[.substr(0,1)].substr(.chars-1,1))},.comb(/(\d)$0*|'#'/)}

시도 해봐

대체 기반 솔루션 97 바이트

->$_,\a{my$u=0;S:g/(\d)$0*|./{$0??(&lc,&uc)[$u](a[$0].substr($/.chars-1,1))!!($u+^=$/eq'#')x 0}/}

시도 해봐

넓히는:

->     # pointy block lambda

  $_,  # input string
  \a   # helper array

{

  my $u = 0;

  S                        # substitute (implicit against 「$_」)
  :global
  /

    | (\d) $0*             # digit followed by same digit
    | .                    # everything else

  /{

    $0                     # is 「$0」 set (digit)


    ??                     # if so then
        (&lc,&uc)[$u](     # call either 「lc」 or 「uc」

          a[$0]            # get the value from the input array
          .substr(         # select the correct character
            $/.chars - 1,
            1
          )

        )


    !!
        (
          $u +^= $/ eq '#' # numeric xor $u if 「#」 was matched
        ) x 0              # string repeated zero times (empty string)

  }/
}

2

자바 스크립트 ES6-124 바이트

골프 :

f=h=>a=>(o=c="")+a.match(/#|(.)\1*/g).forEach(e=>e==" "?0:e=="#"?c=!c:(n=h[e[0]][e.length-1])*(o+=c?n.toUpperCase():n))?o:0;

f=h=>a=>(o=c="")+a.match(/#|(.)\1*/g).forEach(e=>e==" "?0:e=="#"?c=!c:(n=h[e[0]][e.length-1])*(o+=c?n.toUpperCase():n))?o:0;

console.log(f(["  ",".,!","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"])("#4440555#666888330#999#66688111"));
console.log(f(["  ",".,!","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"])("#6#33777 7779990#222#4477744477778627777111"));
console.log(f(["  ",".,!","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"])("#44#27 79990#66#3390999332777111"));

언 골프 드 :

f=(a,h)=>{
    //out string
    o="";
    //uppercase or lowercase (initialized as "" and then inverted in golfed version)
    c=0;
    //split it into array of instructions, which are sets of repeated characters, or # solely alone
    a.match(/#|(.)\1*/g).forEach((e)=>{
        e==" "?0:
            e=="#" ? (c=!c) : ( ()=>{ //lambda added because two statements ungolfed, multiplied in the golfed version
                    n=h[e[0]][e.length-1];
                    o+=c?n.toUpperCase():n;
                })()
    })
    return o;
}

1

자바 스크립트, 301 바이트

(a,b)=>{u="l";p=[];r="";a.split``.map((c,i)=>p.push(c!=a[i-1]?" "+c:c));p.join``.trim().replace('   ', ' ').split` `.map(l=>{if(l=="#"){u=(u=="l"?b.forEach((y,j)=>b[j]=y.toUpperCase())||"u":b.forEach((y,j)=>b[j]=y.toLowerCase())||"l")}else{if(l!="  "){r+=b[+l[0]][l.length-1]}else{r+=" "}}});return r}

f=(a,b)=>{u="l";p=[];r="";a.split``.map((c,i)=>p.push(c!=a[i-1]?" "+c:c));p.join``.trim().replace('   ', ' ').split` `.map(l=>{if(l=="#"){u=(u=="l"?b.forEach((y,j)=>b[j]=y.toUpperCase())||"u":b.forEach((y,j)=>b[j]=y.toLowerCase())||"l")}else{if(l!="  "){r+=b[+l[0]][l.length-1]}else{r+=" "}}});return r}

console.log(f("#4440555#666888330#999#66688111 ",["  ",".,!","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"]));
console.log(f("#6#33777 7779990#222#4477744477778627777111",["  ",".,!","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"]));
console.log(f("#44#27 79990#66#3390#999#332777111",["  ",".,!","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"]));

나는 이것이 매우 길다는 것을 알고 있지만 이것이 내가 할 수있는 최선입니다.


1

V , 60 바이트

Í /|
ͨ䩨±*©/½a[submatch(1)][len(submatch(2))]
Í|
ò/#
g~$x

(인쇄 할 수없는 ½<Ctrl+r>a )

온라인으로 사용해보십시오!

설명


Í /|                                          #Replace all " " with "|"
ͨ䩨±*©                                      #Replace all (\d)(\1*)
        /½                                    #With =
          ^Ra                                 #(Inserts the passed array)
             [submatch(1)][len(submatch(2))]  #Index into the array
Í|                                            #Replace all "|" with "" (second ò implied)
ò   ò                                         #Recursively (until breaking)
 /#                                           #Go to the next #
g~$                                           #Toggle case until the of the line
   x                                          #Delete current char (#)
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.