├── .gitignore
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled class file
2 | *.class
3 |
4 | # Log file
5 | *.log
6 |
7 | # BlueJ files
8 | *.ctxt
9 |
10 | # Mobile Tools for Java (J2ME)
11 | .mtj.tmp/
12 |
13 | # Package Files #
14 | *.jar
15 | *.war
16 | *.nar
17 | *.ear
18 | *.zip
19 | *.tar.gz
20 | *.rar
21 |
22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23 | hs_err_pid*
24 |
25 | .idea
26 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
Algorithms for Everybody
2 |
3 | The content will be added gradually till the training day.
4 |
5 | To view the code in different programming languages, please choose a branch:
6 |
7 | - [ ] [Golang](https://github.com/NigarMovsumova/algorithms-for-everybody/tree/golang)
8 | - [ ] [Java](https://github.com/NigarMovsumova/algorithms-for-everybody/tree/java)
9 | - [ ] [Python](https://github.com/NigarMovsumova/algorithms-for-everybody/tree/python)
10 | - [ ] [JavaScript](https://github.com/NigarMovsumova/algorithms-for-everybody/tree/javascript)
11 | - [ ] [C](https://github.com/NigarMovsumova/algorithms-for-everybody/tree/C)
12 |
13 | 2 extra programming languages will be added after the training.
14 | They will be chosen by the majority during the training.
15 |
16 | To register for the training, [click here](https://www.oreilly.com/live-events/algorithms-for-everybody/0636920064925/0636920064924/).
17 |
18 | Future sessions will be added gradually.
19 |
20 |
--------------------------------------------------------------------------------