Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 12b8fd2

Browse files
committed
Added changelog
1 parent 9e8c639 commit 12b8fd2

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

CHANGELOG.rst

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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.

0 commit comments

Comments
 (0)