Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README for markdown compliance #12

Merged
merged 1 commit into from
Jun 25, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#Exercises for Intro to Algorithms and Data Structures in JavaScript
# Exercises for Intro to Algorithms and Data Structures in JavaScript

Welcome to the exercises. This is where the magic happens!

###Monday - June 13th
### Monday - June 13th
1. Implement a stack data structure:
- https://github.com/kuychaco/algoClass/blob/master/data-structures/stack.js
- Note: only do the first exercise after you implement the stack
Expand All @@ -15,7 +15,7 @@ Welcome to the exercises. This is where the magic happens!
- https://github.com/kuychaco/algoClass/tree/master/recursion
- Note: some of these will only click after we go through sorting, graphs & trees later this week.

###Tuesday - June 14th
### Tuesday - June 14th
1. Implement the elementary sorting algorithms (bubble, insertion, selection):
- https://github.com/kuychaco/algoClass/tree/master/sorting-algorithms
2. Implement Mergesort
Expand All @@ -33,13 +33,13 @@ Welcome to the exercises. This is where the magic happens!
- Note: Hold off on Depth First Search and Breadth First Search because we haven't covered that yet.
3. This is a catch up day so use the rest of the afternoon to finish up exercises from previous days and review anything that was confusing.

###Thursday - June 16th
### Thursday - June 16th
1. Binary Search Tree
- https://github.com/kuychaco/algoClass/blob/master/data-structures/binarySearchTree.js
2. Binary Search Array
- https://github.com/kuychaco/algoClass/blob/master/searching-algorithms/binarySearchArray.js

###Friday - June 17th
### Friday - June 17th
1. Binary Search Tree (delete nodes)
- https://github.com/kuychaco/algoClass/blob/master/data-structures/binarySearchTree.js
2. Implement a graph
Expand All @@ -51,6 +51,6 @@ Welcome to the exercises. This is where the magic happens!
5. [Bonus] BFS/DFS for tree
- https://github.com/kuychaco/algoClass/blob/master/data-structures/tree.js

###Saturday - June 18th
### Saturday - June 18th
1. Create your own Hash Tables! Watch out for those collisions!
- https://github.com/kuychaco/algoClass/blob/master/data-structures/hashTable.js