[자바스크립트/알고리즘] 2진수 문자열을 영어로 변환
728x90

문제

주어진 2진수 문자열을 영어로 변환하여라.

 

예시

binaryAgent("01000001 01110010 01100101 01101110 00100111 01110100 00100000 01100010 01101111 01101110 01100110 01101001 01110010 01100101 01110011 00100000 01100110 01110101 01101110 00100001 00111111") Aren't bonfires fun!?
binaryAgent("01001001 00100000 01101100 01101111 01110110 01100101 00100000 01000110 01110010 01100101 01100101 01000011 01101111 01100100 01100101 01000011 01100001 01101101 01110000 00100001") I love FreeCodeCamp!

 

나의 풀이

function binaryAgent(str) {
  return str.split(" ")
  .map(e => String.fromCharCode(parseInt(e, 2)))
  .join("");
}

우선 주어진 2진수 문자열을 공백(" ")을 기준으로 나눈다.

그 후 반복문으로 한 글자씩 영어로 변환한다.

마지막으로 변환된 문자들을 하나의 문자열로 합친다.

 

Intermediate Algorithm Scripting: Binary Agents

(문제 출처:www.freecodecamp.org)

320x100