Skip to content

Commit 1c56070

Browse files
authored
Update README for markdown compliance
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.
1 parent 0947299 commit 1c56070

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#Exercises for Intro to Algorithms and Data Structures in JavaScript
1+
# Exercises for Intro to Algorithms and Data Structures in JavaScript
22

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

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

18-
###Tuesday - June 14th
18+
### Tuesday - June 14th
1919
1. Implement the elementary sorting algorithms (bubble, insertion, selection):
2020
- https://github.com/kuychaco/algoClass/tree/master/sorting-algorithms
2121
2. Implement Mergesort
@@ -33,13 +33,13 @@ Welcome to the exercises. This is where the magic happens!
3333
- Note: Hold off on Depth First Search and Breadth First Search because we haven't covered that yet.
3434
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.
3535

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

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

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

0 commit comments

Comments
 (0)