Update math/lcm_sum.cpp

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

View File

@ -76,7 +76,7 @@ static void test() {
std::cout << "Passed Test 4!" << std::endl;
n = 15;
int test_5 = lcmSum(n);
int test_5 = math::lcmSum(n);
assert(test_5 == 1110);
std::cout << "Passed Test 5!" << std::endl;
}