fix(curriculum): format challenge markdown as per linting rules (#36326)

* fix: Format challenge markdown according to linting rules

* fix: Put spaces after section tags
This commit is contained in:
Oliver Eyton-Williams
2019-07-18 17:32:12 +02:00
committed by mrugesh
parent c387873640
commit 7d4dc382b4
63 changed files with 257 additions and 156 deletions

View File

@ -6,11 +6,13 @@ challengeType: 5
## Description
<section id='description'>
A vector is defined as having three dimensions as being represented by an ordered collection of three numbers: (X, Y, Z).
</section>
## Instructions
<section id='instructions'>
Write a function that takes any numbers of vectors (arrays) as input and computes their dot product. Your function should return <code>null</code> on invalid inputs such as vectors of different lengths.
</section>