Update backtracking/wildcard_matching.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Swastika Gupta
2021-08-01 19:44:56 +05:30
committed by GitHub
parent 01b9d7865f
commit b2e0dbe0e9

View File

@@ -127,7 +127,7 @@ static void test() {
assert(backtracking::wildcard_matching::wildcard_matching(matching4, pattern4, 0, 0) == 1); // here the pattern matches with given string
std::cout << "passed" << std::endl;
// Test 5
// 5th test
std::cout << "5th test ";
std::string matching5 = "baaabab";
std::string pattern5 = "aa?ab";