Update math/power_of_two.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Neha Hasija 2020-10-22 00:45:03 +05:30 committed by GitHub
parent d33bf9d83b
commit 63be7addc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,6 +49,8 @@ void power_of_two(int n) {
std::cout << "No, the number " << n << " is not a power of 2";
}
}
} // namespace math
/**
* @brief Main function