From 42b4d4a69dce79e59bd2e1960c9575ff58a96651 Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Tue, 1 Jun 2021 18:31:44 -0400 Subject: [PATCH] Added function to get factorial of number --- src/main/java/mattrixwv/Algorithms.java | 4 ++-- src/test/java/mattrixwv/TestAlgorithms.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/mattrixwv/Algorithms.java b/src/main/java/mattrixwv/Algorithms.java index 3c49cbc..167096c 100644 --- a/src/main/java/mattrixwv/Algorithms.java +++ b/src/main/java/mattrixwv/Algorithms.java @@ -1,11 +1,11 @@ //JavaClasses/src/main/java/mattrixwv/Algorithms.java //Matthew Ellison // Created: 03-02-19 -//Modified: 07-27-20 +//Modified: 06-01-21 //This class holds many algorithms that I have found it useful to keep around //As such all of the functions in here are static and meant to be used as stand alone functions /* -Copyright (C) 2020 Matthew Ellison +Copyright (C) 2021 Matthew Ellison This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test/java/mattrixwv/TestAlgorithms.java b/src/test/java/mattrixwv/TestAlgorithms.java index 05b31b7..57ab3e5 100644 --- a/src/test/java/mattrixwv/TestAlgorithms.java +++ b/src/test/java/mattrixwv/TestAlgorithms.java @@ -1,11 +1,11 @@ //JavaClasses/src/test/java/mattrixwv/TestAlgorithms.java //Matthew Ellison // Created: 06-07-20 -//Modified: 07-28-20 +//Modified: 06-01-21 //This class holds many algorithms that I have found it useful to keep around //As such all of the functions in here are static and meant to be used as stand alone functions /* -Copyright (C) 2020 Matthew Ellison +Copyright (C) 2021 Matthew Ellison This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by