Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/com/interview/dynamic/RegexMatching.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public boolean matchRegexRecursive(char[] str, char[] pattern){
}

private boolean matchRegexRecursive(char text[], char pattern[], int pos1, int pos2){
//if pos2 has reached end of pattern means pos2 should also reach end of text for match
//if pos2 has reached end of pattern means pos1 should also reach end of text for match
//to happen
if(pos2 == pattern.length) {
return pos1 == text.length;
Expand Down