From d8690ee587355f4d239feb43f9e8e58370fec87d Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Thu, 5 Aug 2021 23:52:00 +0530 Subject: [PATCH] Update divide_and_conquer/karatsuba_algorithm_for_fast_multiplication.cpp Co-authored-by: David Leal --- .../karatsuba_algorithm_for_fast_multiplication.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/divide_and_conquer/karatsuba_algorithm_for_fast_multiplication.cpp b/divide_and_conquer/karatsuba_algorithm_for_fast_multiplication.cpp index 208487c0c..6f5450dbf 100644 --- a/divide_and_conquer/karatsuba_algorithm_for_fast_multiplication.cpp +++ b/divide_and_conquer/karatsuba_algorithm_for_fast_multiplication.cpp @@ -133,7 +133,7 @@ static void test() { // 1st test std::string s11 = "1"; std::string s12 = "1010"; - std::cout << "Test 1... "; + std::cout << "1st test... "; assert(divide_and_conquer::karatsuba_algorithm::karatsuba_algorithm( s11, s12) == 10); // here the multiplication is 10 std::cout << "passed" << std::endl;