removed factorial files and example tests

This commit is contained in:
2026-03-13 20:45:01 +01:00
parent 708355f6e5
commit 01209f4af0
3 changed files with 0 additions and 11 deletions

View File

@@ -1,10 +1,3 @@
#include "factorial.h"
#include <catch2/catch_test_macros.hpp>
TEST_CASE("Factorials are computed", "[factorial]") {
REQUIRE(Factorial(0) == 1);
REQUIRE(Factorial(1) == 1);
REQUIRE(Factorial(2) == 2);
REQUIRE(Factorial(3) == 6);
REQUIRE(Factorial(10) == 3628800);
}