Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonytech83/algorithms-with-python
SoftUni - Algorithms with Python - July 2022
https://github.com/tonytech83/algorithms-with-python
python
Last synced: about 2 months ago
JSON representation
SoftUni - Algorithms with Python - July 2022
- Host: GitHub
- URL: https://github.com/tonytech83/algorithms-with-python
- Owner: tonytech83
- Created: 2022-07-05T07:06:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-11T07:54:36.000Z (over 1 year ago)
- Last Synced: 2023-10-11T10:25:34.022Z (over 1 year ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 137 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Algorithms with Python - July 2022
The algorithms course will introduce participants to the most common programming techniques. Along with this, multiple algorithmic problems will be solved and analyses of different approaches will be conducted - their properties, applications, advantages and disadvantages. Participants in the training will develop their algorithmic thinking skills and will acquire skills for working with the basic classes of algorithms used in practice: recursion and backtracking, recursion with variable usage, searching and sorting, as well as graph theory - implementation in computer memory, minimum spanning tree, traversal and finding the shortest path. Students will be introduced to the technique of dynamic programming and will solve known problems such as the Fibonacci sequence, finding the longest common sequence and the longest sequence of increasing elements.
## Language
- Python## Judge System
- [`Problem descriptiom and online judge system`](https://judge.softuni.org/Contests/#!/List/ByCategory/350/Algorithms-with-Python)
## Topics
- [`Recursion and Backtracking`](https://github.com/tonytech83/Algorithms-with-Python/tree/main/01_Recursion)
- [`Searching and Sorting Algorithms`](https://github.com/tonytech83/Algorithms-with-Python/tree/main/03_Searching_and_Sorting_Algorithms_Lab)
- [`Graph Theory, Traversal and Topological Sorting`](https://github.com/tonytech83/Algorithms-with-Python/tree/main/03_Graph_Theory_Traversal_and_Topological_Sorting)
- [`Graphs Shortest Path and MST`](https://github.com/tonytech83/Algorithms-with-Python/tree/main/04_Graphs_Shortest_Path_and_MST)
- [`Dynamic Programming`](https://github.com/tonytech83/Algorithms-with-Python/tree/main/08_Dynamic_Programming_Lab)
Made with by Anton Petrov