mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-07 22:32:28 +08:00
Update math/fibonacci_sum.cpp
Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
@@ -89,7 +89,8 @@ namespace fibonacci_sum {
|
||||
int fiboSum(int n,int m){
|
||||
return (result(m+2) - result(n+1));
|
||||
}
|
||||
}//namespace math
|
||||
} // namespace fibonacci_sum
|
||||
} // namespace math
|
||||
|
||||
/**
|
||||
* Function for testing fiboSum function.
|
||||
|
||||
Reference in New Issue
Block a user