We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78e5030 commit c55f27fCopy full SHA for c55f27f
.gitignore
@@ -1,3 +1,4 @@
1
.idea/
2
out/
3
input.txt
4
+AlgorithmsCourse.iml
README.md
@@ -0,0 +1,17 @@
+# Algorithms
+This is a repository with code from an algorithms course.
+
+All algorithms are implemented in Java for education.
5
6
+## Hot to use it
7
+Java 8 (JDK 1.8) is required. It's recommended to run all commands from the root directory of the repository.
8
9
+Compilation of Java code:
10
+```bash
11
+javac -d out src\algorithms\<package_name>\*.java
12
+```
13
14
+Running of the compiled program:
15
16
+java -classpath out algorithms.<package_name>.Main
17
0 commit comments