Skip to content

Instantly share code, notes, and snippets.

@fhucho
Created October 21, 2012 11:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fhucho/3926785 to your computer and use it in GitHub Desktop.
Save fhucho/3926785 to your computer and use it in GitHub Desktop.
def is_longer(dna1, dna2):
delka1 = len(dna1)
delka2 = len(dna2)
vysledek = delka1 > delka2
return vysledek
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment