Skip to content

Contains Solutions to weekly programming assignments for Algorithmic Toolbox Course on Coursera.

Notifications You must be signed in to change notification settings

pablomarcel/Algorithms-and-Data-Structures-Coursera

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Algorithms-and-Data-Structures-Coursera

About this Course

This specialization is a mix of theory and practice: you will learn algorithmic techniques for solving various computational problems and will implement about 100 algorithmic coding problems in a programming language of your choice. No other online course in Algorithms even comes close to offering you a wealth of programming challenges that you may face at your next job interview. To prepare you, we invested over 3000 hours into designing our challenges as an alternative to multiple choice questions that you usually find in MOOCs. Sorry, we do not believe in multiple choice questions when it comes to learning algorithms...or anything else in computer science! For each algorithm you develop and implement, we designed multiple tests to check its correctness and running time — you will have to debug your programs without even knowing what these tests are! It may sound difficult, but we believe it is the only way to truly understand how the algorithms work and to master the art of programming. The specialization contains two real-world projects: Big Networks and Genome Assembly. You will analyze both road networks and social networks and will learn how to compute the shortest route between New York and San Francisco (1000 times faster than the standard shortest path algorithms!) Afterwards, you will learn how to assemble genomes from millions of short fragments of DNA and how assembly algorithms fuel recent developments in personalized medicine.

About this Repo

Contains Solutions to weekly programming assignments for Data Structures and Algorithms Course on Coursera.They will be programmed in python and C++. Feel free to comment the code and send pull requests.

Link to the Course:

https://www.coursera.org/learn/algorithmic-toolbox

Running CPP/Python Files:

Refer standard input and output from the PDF in the folder enclosing the file.

Running Python:
python3 filename
Running C++:
g++ -o output_filename cpp_file_name
./output_filename

You can also provide input as text files.

./output_filename < input.txt >output.txt

To Do:

Comment the Codes.

About

Contains Solutions to weekly programming assignments for Algorithmic Toolbox Course on Coursera.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 76.5%
  • Python 23.5%