Update math/lcm_sum.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
chestamittal 2020-10-20 03:02:11 +05:30 committed by GitHub
parent 6dc89cc441
commit 403f44d924
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ static void test() {
std::cout << "Passed Test 1!" << std::endl;
n = 5;
int test_2 = lcmSum(n);
int test_2 = math::lcmSum(n);
assert(test_2 == 55);
std::cout << "Passed Test 2!" << std::endl;