Recreating Practice Folder + Application.java.

This commit is contained in:
Jonathan Turner 2024-02-13 18:54:59 -05:00
parent 68affce749
commit 80c6c74a66
2 changed files with 9 additions and 15 deletions

View File

@ -0,0 +1,9 @@
package Practice;
public abstract class Application {
public void start() {
}
}

View File

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