Rosalind - Enumerating k-mers Lexicographically
rosalindProblem:
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: