Update math/n_bonacci.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Swastika Gupta
2021-07-22 07:29:22 +05:30
committed by GitHub
parent adccfdfa41
commit 8657a16140

View File

@@ -11,7 +11,7 @@
* In this code we take N and M as input where M is the number of terms
* to be printed of the N-bonacci series
*
* @author [Swastika Gupta](https://github.com/swastyy)
* @author [Swastika Gupta](https://github.com/Swastyy)
*/
#include <algorithm> /// for std::is_equal, std::swap
#include <cassert> /// for assert
@@ -95,4 +95,4 @@ static void test() {
int main() {
test(); // run self-test implementations
return 0;
}
}