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

Releases: edu-python-course/problem-sets

2024.01.1

21 Feb 16:56
78e4d6f
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2023.11.1...2024.01.1

2023.11.1

30 Nov 09:42
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2023.10.2...2023.11.1

2023.10.2

27 Oct 22:19
56ce293
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2023.09.1...2023.10.2

Release 2023.09.1

04 Oct 12:27
d28fa4a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2023.08.1...2023.09.1

Release 2023.08.1

16 Aug 20:29
c4326cd
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2023.05.1...2023.08.1

Release 2023.05.1

11 May 08:56
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2023.04.2...2023.05.1

Release 2023.04.2

21 Apr 19:50
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2023.04.1...2023.04.2

Release 2023.04.1

08 Apr 22:08
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2023.01.1...2023.04.1

Release 2023.01.1

31 Jan 07:44
938645a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2022.11.1...2023.01.1

Release 2022.11.1

04 Dec 14:34
Compare
Choose a tag to compare

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.