fix: update "Note" formatting in "Remove Elements from a Linked List" challenge (#36173)

* fix: update note format

* fix: moved note to same line
This commit is contained in:
Fabricio Asfora Lira 2019-06-06 16:27:58 -03:00 committed by Tom
parent e2e3c09686
commit 2da9d631ef

View File

@ -15,8 +15,7 @@ If the element we wish to remove is the <code>head</code> element, we reassign t
## Instructions
<section id='instructions'>
Write a <code>remove</code> method that takes an element and removes it from the linked list.
Note
The <code>length</code> of the list should decrease by one every time an element is removed from the linked list.
<strong>Note:</strong> The <code>length</code> of the list should decrease by one every time an element is removed from the linked list.
</section>
## Tests