美文网首页程序员
FCC--DNA Pairing(依据每一个碱基,为其找到配对的

FCC--DNA Pairing(依据每一个碱基,为其找到配对的

作者: Ytsssss | 来源:发表于2017-09-06 23:54 被阅读0次

    问题:

    DNA 链缺少配对的碱基。依据每一个碱基,为其找到配对的碱基,然后将结果作为第二个数组返回。

    Base pairs(碱基对)是一对 AT 和 CG,为给定的字母匹配缺失的碱基。

    在每一个数组中将给定的字母作为第一个碱基返回。

    例如,对于输入的 GCG,相应地返回 [["G", "C"], ["C","G"],["G", "C"]]

    字母和与之配对的字母在一个数组内,然后所有数组再被组织起来封装进一个数组。

    代码:

    function pair(str) {

        var temp=str.split('');

        var answer=[];

        for(var i=0;i<temp.length;i++){

          if(temp[i]=='A'){

          answer[i]=['A','T'];

        }else if(temp[i]=='T'){

          answer[i]=['T','A'];

        }else if(temp[i]=='C'){

          answer[i]=['C','G'];

        }else if(temp[i]=='G'){

          answer[i]=['G','C'];

        }

      }

        return answer;

    }

    思路:

    将给定的字符串分割,然后根据碱基对原则配对,将结果保存在数组中。

    相关文章

      网友评论

        本文标题:FCC--DNA Pairing(依据每一个碱基,为其找到配对的

        本文链接:https://www.haomeiwen.com/subject/zsdbjxtx.html