Update math/lcm_sum.cpp

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

View File

@ -56,7 +56,7 @@ int lcmSum(int num) {
*/
static void test() {
int n = 2;
int test_1 = lcmSum(n);
int test_1 = math::lcmSum(n);
assert(test_1 == 4);
std::cout << "Passed Test 1!" << std::endl;