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

fix: small error #10

Merged
merged 3 commits into from
Dec 29, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion algorithms/tree_traversal.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ For the tree of the image the order should be:

`8 -> 3 -> 1 -> 6 -> 4 -> 7 -> 10 -> 14 -> 13`

#### Implementantation
#### Implementation


```ts
Expand Down
2 changes: 1 addition & 1 deletion hashfunction.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ be a function that maps each symbol of the alphabet to a unique integer from 0 t
α − 1.


### Write a hash function for an array with lenght n. The values of the array is strings.
### Write a hash function for an array with length n. The values of the array is strings.


```js
Expand Down
6 changes: 3 additions & 3 deletions questions.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ With `new`:

To avoid it we can do `toString.call(obj) === '[object Object]';

### Exercice 1
### Exercise 1

Given a string of words (x), you need to find the highest scoring word.

Expand Down Expand Up @@ -270,7 +270,7 @@ article::before {
var content = element.innerHTML;

// set the HTML of "otherElement"
otherElement.innterHTML = content;
otherElement.innerHTML = content;
```

#### Getting and Setting the Class Name
Expand Down Expand Up @@ -300,7 +300,7 @@ element.classList.remove('cool');
var content = element.innerHTML;

// set the HTML of "otherElement"
otherElement.innterHTML = content;
otherElement.innerHTML = content;
```

#### Children of a Given Element
Expand Down