Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sunsided/algorithmic-toolbox
Solutions to Coursera's Algorithmic Toolbox course
https://github.com/sunsided/algorithmic-toolbox
algorithm-challenges coursera coursera-algorithms-specialization mooc
Last synced: about 2 months ago
JSON representation
Solutions to Coursera's Algorithmic Toolbox course
- Host: GitHub
- URL: https://github.com/sunsided/algorithmic-toolbox
- Owner: sunsided
- License: mit
- Created: 2019-12-27T14:01:52.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T14:52:08.000Z (almost 5 years ago)
- Last Synced: 2024-10-11T02:31:13.644Z (2 months ago)
- Topics: algorithm-challenges, coursera, coursera-algorithms-specialization, mooc
- Language: C#
- Size: 4.8 MB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Algorithmic Toolbox
C# solutions for the [Algorithmic Toolbox](https://www.coursera.org/learn/algorithmic-toolbox)
Coursera course.> The course covers basic algorithmic techniques and ideas for computational problems arising
> frequently in practical applications: sorting and searching, divide and conquer, greedy algorithms,
> dynamic programming. We will learn a lot of theory: how to sort data and how it helps for
> searching; how to break a large problem into pieces and solve them recursively; when it makes
> sense to proceed greedily; how dynamic programming is used in genomic studies.The course is structured into six weeks, addressing different topics:
- Week 1 and 2: General programming challenges, and warm-up,
- Week 3: Greedy Algorithms,
- Week 4: Divide and Conquer,
- Week 5 and 6: Dynamic Programming.