Skip to content

Commit d8690ee

Browse files
SwastyyPanquesito7
andauthored
Update divide_and_conquer/karatsuba_algorithm_for_fast_multiplication.cpp
Co-authored-by: David Leal <halfpacho@gmail.com>
1 parent 8cdc916 commit d8690ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

divide_and_conquer/karatsuba_algorithm_for_fast_multiplication.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ static void test() {
133133
// 1st test
134134
std::string s11 = "1";
135135
std::string s12 = "1010";
136-
std::cout << "Test 1... ";
136+
std::cout << "1st test... ";
137137
assert(divide_and_conquer::karatsuba_algorithm::karatsuba_algorithm(
138138
s11, s12) == 10); // here the multiplication is 10
139139
std::cout << "passed" << std::endl;

0 commit comments

Comments
 (0)