Rosalind - Finding a Motif in DNA
rosalindProblem:
Please find the problem here.
Solution:
This feels like cheating. The problem is obviously asking for implementing a substring search, and I am using the Python builtin.
I have implemented Boyer Moore in C#, so I don’t feel bad. In fact, I validated my implementation using the Rosalind test cases, and it passed there as well.
Code: