Releases: edu-python-course/problem-sets
2024.01.1
What's Changed
- Fixed Issue #74 by @tarun212001 in #123
- [Release] 2024.01.1 by @shorodilov in #129
New Contributors
- @tarun212001 made their first contribution in #123
Full Changelog: 2023.11.1...2024.01.1
2023.11.1
2023.10.2
What's Changed
- Add "bartender" demo script by @shorodilov in #109
- Quiz assignment by @shorodilov in #111
- [Datasets] Package update by @shorodilov in #114
- [2023.10.1] Release by @shorodilov in #113
- [2023.10.2] Release by @shorodilov in #115
Full Changelog: 2023.09.1...2023.10.2
Release 2023.09.1
What's Changed
- Geometry scripts by @shorodilov in #100
- Minor fixes by @shorodilov in #101
- Feature/sequences by @shorodilov in #107
- Feature/coverage by @shorodilov in #105
- Update 2023.09.1 by @shorodilov in #104
Full Changelog: 2023.08.1...2023.09.1
Release 2023.08.1
Release 2023.05.1
Release 2023.04.2
What's Changed
- Hotfix #38 by @shorodilov in #39
- WRW Update by @shorodilov in #41
- Fixed typos in WTK by @shorodilov in #42
- Renamed "chess" tests by @shorodilov in #43
- Release 2023.04.2 by @shorodilov in #48
Full Changelog: 2023.04.1...2023.04.2
Release 2023.04.1
What's Changed
- Applied refactoring by @shorodilov in #29
- Merge hotfix/conv_store to master by @shorodilov in #31
- Version 2023.04.1 by @shorodilov in #35
Full Changelog: 2023.01.1...2023.04.1
Release 2023.01.1
What's Changed
- Release 2022.12 by @shorodilov in #14
- Support pip manager by @shorodilov in #20
- Brick wall challenge by @shorodilov in #21
- Release 2023.01.2 by @shorodilov in #22
Full Changelog: 2022.11.1...2023.01.1
Release 2022.11.1
Basic Python Challenges
Primes
Implemented the most straight-forward approach to find primes within a
given range. Also added the implementation of "the Sieve of
Eratosthenes" algorithm. All functions are covered with tests.
Sequences
Added the implementations of the most popular sequences tasks:
- palindrome checker
- palindrome substring finder
- balanced parentheses checker
All functions are covered with tests.
Sorting
Added implementations of the most popular sorting algorithms:
- bubble sort
- selection sort
- insertion sort
- merge sort
- quick sort
- counting sort
- radix sort
- bucket sort
- heap sort
- shell sort
All functions are covered with tests.
Object-Oriented Programming Challenges
Convenience Store
Added the basic "convenience store" challenge description and
implementation. Tests are included as well.
Warriors, Robbers and Wizards Game
Added the basic "wrw game" challenge description and implementation.
This tasks is considered to be the final exam for the OOP block. Tests
are included as well.