Coding Challenge: Implement Pattern Matching
Explore the pattern matching problem by implementing an algorithm that finds all occurrences of a specific DNA pattern within a genome. Learn to detect positions where key replication signals appear and interpret biological significance from genomic data.
We'll cover the following...
We'll cover the following...
Pattern lookup
Pattern Matching Problem
Problem overview:
Find all occurrences of a pattern in a string.
Input: Strings Pattern and Genome.
Output: All starting positions in Genome where Pattern appears as a sub-string.