Skip to content

Commit 36a7429

Browse files
Switch to assets.exercism.org
1 parent 085127b commit 36a7429

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exercises/binary-search-tree/description.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ All data in the left subtree is less than or equal to the current node's data, a
1919

2020
For example, if we had a node containing the data 4, and we added the data 2, our tree would look like this:
2121

22-
![A graph with root node 4 and a single child node 2.](https://exercism-v3-icons.s3.eu-west-2.amazonaws.com/images/exercises/binary-search-tree/tree-4-2.svg)
22+
![A graph with root node 4 and a single child node 2.](https://assets.exercism.org/images/exercises/binary-search-tree/tree-4-2.svg)
2323

2424
If we then added 6, it would look like this:
2525

26-
![A graph with root node 4 and two child nodes 2 and 6.](https://exercism-v3-icons.s3.eu-west-2.amazonaws.com/images/exercises/binary-search-tree/tree-4-2-6.svg)
26+
![A graph with root node 4 and two child nodes 2 and 6.](https://assets.exercism.org/images/exercises/binary-search-tree/tree-4-2-6.svg)
2727

2828
If we then added 3, it would look like this
2929

30-
![A graph with root node 4, two child nodes 2 and 6, and a grandchild node 3.](https://exercism-v3-icons.s3.eu-west-2.amazonaws.com/images/exercises/binary-search-tree/tree-4-2-6-3.svg)
30+
![A graph with root node 4, two child nodes 2 and 6, and a grandchild node 3.](https://assets.exercism.org/images/exercises/binary-search-tree/tree-4-2-6-3.svg)
3131

3232
And if we then added 1, 5, and 7, it would look like this
3333

34-
![A graph with root node 4, two child nodes 2 and 6, and four grandchild nodes 1, 3, 5 and 7.](https://exercism-v3-icons.s3.eu-west-2.amazonaws.com/images/exercises/binary-search-tree/tree-4-2-6-1-3-5-7.svg)
34+
![A graph with root node 4, two child nodes 2 and 6, and four grandchild nodes 1, 3, 5 and 7.](https://assets.exercism.org/images/exercises/binary-search-tree/tree-4-2-6-1-3-5-7.svg)
3535

3636
## Credit
3737

0 commit comments

Comments
 (0)