Results for "Puzzle"

Users

Blogs

Bookmarks

Top-level pages

ResearchLabs posts

  • Joao Pedro de Magalhaes Lab

    Ageing has a profound impact on human society and modern medicine, yet it remains a major puzzle of biology. The goal of my work is to help understand the genetic, cellular, and molec...

    3493 days ago

Tags

  • Frequent words problem solution by Perl

    Solved with perl http://rosalind.info/problems/1a/ #Find the most frequent k-mers in a string.#Given: A DNA string Text and an integer k.#Return: All most frequent k-mers in Text (in any order).use strict;use warnings;my $string="ACGTTGCATGTCGCATGATGCATGAGAGCT";my $kmer=4; my %myHash;my $max=0...

    Tags: Bioinformatics, Computational Biology, Education, Solution, Puzzle, Study, Script, Perl, Frequest, Words, Rosalind

    3237 days ago

  • Reverse Complement Problem Solved with Perl

    Question at http://rosalind.info/problems/1b/ #Find the reverse complement of a DNA string.#Given: A DNA string Pattern.#Return: Pattern, the reverse complement of Pattern.use strict;use warnings;my $string="AAAACCCGGT";my $finalString="";my %hash = (    "C" => "G",   ...

    Tags: Bioinformatics, Computational Biology, Education, Solution, Puzzle, Study, Script, Perl, Reserve, Complementary

    3237 days ago

  • +4 more Tags

Comments

  • Comment on "Interview Puzzles for Bioinformatician !"

    Here is the list of puzzles which are asked these days in the Inte...d Triangle Problem Crossing the Bridge Puzzle Burning Rope Timer Puzzle Heaven or Hell Puzzle 10 Coins Puzzle King and Wi...so refer GeeksforGeeks , it has lots of puzzles. Puzzles Archives - Geeksfo...

    2103 days ago