This commit is contained in:
2024-11-09 10:40:38 -06:00
parent ff47fbff7e
commit 78a00f71cc
2 changed files with 46 additions and 5 deletions

View File

@@ -4,8 +4,6 @@
#include "mini-odeint.hpp"
#include <ranges>
unsigned int Factorial(unsigned int number) {
return number <= 1 ? number : Factorial(number - 1) * number;
}