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 - } - - - -}