zoukankan      html  css  js  c++  java
  • Binary Agents

    FCC题目:

    传入二进制字符串,翻译成英语句子并返回。

    二进制字符串是以空格分隔的。

    示例:

    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!"

    步骤

     1 function binaryAgent(str) {
     2   
     3   var arr=str.split(' ');
     4   var ay=[];
     5   arr.forEach(function(vl){
     6     ay.push(String.fromCharCode(parseInt(vl,2)));
     7   });
     8   return ay.join('');
     9 }
    10 
    11 binaryAgent("01000001 01110010 01100101 01101110 00100111 01110100 00100000 01100010 01101111 01101110 01100110 01101001 01110010 01100101 01110011 00100000 01100110 01110101 01101110 00100001 00111111");
  • 相关阅读:
    RMQ
    LCA 笔记
    LUCAS 定理
    topcoder 643 DIV2
    BZOJ 1071组队
    Codeforces Round #283 (Div. 2)
    topcoder 642
    Codeforces Round #278 (Div. 2)
    树链剖分
    Codeforces Round #277 (Div. 2)
  • 原文地址:https://www.cnblogs.com/lilicat/p/6257474.html
Copyright © 2011-2022 走看看