Skip to content

Commit 2b8d67a

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

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
@@ -141,7 +141,7 @@ static void test() {
141141
// 2nd test
142142
std::string s21 = "11";
143143
std::string s22 = "1010";
144-
std::cout << "Test 2... ";
144+
std::cout << "2nd test... ";
145145
assert(divide_and_conquer::karatsuba_algorithm::karatsuba_algorithm(
146146
s21, s22) == 30); // here the multiplication is 30
147147
std::cout << "passed" << std::endl;

0 commit comments

Comments
 (0)