Skip to content

Commit c55f27f

Browse files
README
1 parent 78e5030 commit c55f27f

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea/
22
out/
33
input.txt
4+
AlgorithmsCourse.iml

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Algorithms
2+
This is a repository with code from an algorithms course.
3+
4+
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+
```bash
16+
java -classpath out algorithms.<package_name>.Main
17+
```

0 commit comments

Comments
 (0)