Rosalind - Enumerating k-mers Lexicographically

rosalind

Problem:

Please find the problem here.

Solution:

The key to do this problem is to interpret these k-mers as an integer with the number of alphabets as a base. That way enumerating them lexicographically is simply looping.

Code: