This repository was archived by the owner on Jul 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +60
-0
lines changed Expand file tree Collapse file tree 1 file changed +60
-0
lines changed Original file line number Diff line number Diff line change 1+ ###############
2+ Release 2022-11
3+ ###############
4+
5+ ***********************
6+ Basic Python Challenges
7+ ***********************
8+
9+ Primes
10+ ======
11+
12+ Implemented the most straight-forward approach to find primes within a given
13+ range. Also added the implementation of "the Sieve of Eratosthenes" algorithm.
14+ All functions are covered with tests.
15+
16+ Sequences
17+ =========
18+
19+ Added the implementations of the most popular sequences tasks:
20+
21+ - palindrome checker
22+ - palindrome substring finder
23+ - balanced parentheses checker
24+
25+ All functions are covered with tests.
26+
27+ Sorting
28+ =======
29+
30+ Added implementations of the most popular sorting algorithms:
31+
32+ - bubble sort
33+ - selection sort
34+ - insertion sort
35+ - merge sort
36+ - quick sort
37+ - counting sort
38+ - radix sort
39+ - bucket sort
40+ - heap sort
41+ - shell sort
42+
43+ All functions are covered with tests.
44+
45+ **************************************
46+ Object-Oriented Programming Challenges
47+ **************************************
48+
49+ Convenience Store
50+ =================
51+
52+ Added the basic "convenience store" challenge description and implementation.
53+ Tests are included as well.
54+
55+ Warriors, Robbers and Wizards Game
56+ ==================================
57+
58+ Added the basic "wrw game" challenge description and implementation. This tasks
59+ is considered to be the final exam for the OOP block. Tests are included as
60+ well.
You can’t perform that action at this time.
0 commit comments