From 80c6c74a661b97b704537de5da654b0431b126af Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Tue, 13 Feb 2024 18:54:59 -0500 Subject: [PATCH] Recreating Practice Folder + Application.java. --- src/Practice/Application.java | 9 +++++++++ .../Permutations/DecreaseByOne_BottomsUp.java | 15 --------------- 2 files changed, 9 insertions(+), 15 deletions(-) create mode 100644 src/Practice/Application.java delete mode 100644 src/Practice/Permutations/DecreaseByOne_BottomsUp.java diff --git a/src/Practice/Application.java b/src/Practice/Application.java new file mode 100644 index 0000000..a632492 --- /dev/null +++ b/src/Practice/Application.java @@ -0,0 +1,9 @@ +package Practice; + +public abstract class Application { + + public void start() { + + } + +} diff --git a/src/Practice/Permutations/DecreaseByOne_BottomsUp.java b/src/Practice/Permutations/DecreaseByOne_BottomsUp.java deleted file mode 100644 index 17cf774..0000000 --- a/src/Practice/Permutations/DecreaseByOne_BottomsUp.java +++ /dev/null @@ -1,15 +0,0 @@ -package Practice.Permutations; - -/** - * @author Jonathan Turner - * @version Spring 2024 - */ -public class DecreaseByOne_BottomsUp { - - public static void main(String[] args) { - // Prompt for Input - } - - - -}