Skip to content

Commit

Permalink
Update README for markdown compliance
Browse files Browse the repository at this point in the history
GitHub has a new MD specification that they follow, which you can [read about here](https://githubengineering.com/a-formal-spec-for-github-markdown/). Basically, it's a little more strict. For example, headings must now be followed by a space.
  • Loading branch information
newswim committed Apr 15, 2017
1 parent 0947299 commit 1c56070
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit 1c56070

Please sign in to comment.