Browse Source

docs(lalgebra_vector) correct grammar

1127-print-range-subject
davhojt 2 years ago committed by Dav Hojt
parent
commit
f4b37fde93
  1. 8
      subjects/lalgebra_vector/README.md

8
subjects/lalgebra_vector/README.md

@ -2,13 +2,11 @@
### Instructions
A vector in linear algebra is defined as "anything that can be added and that can be multiplied by a scalar"
A vector in linear algebra is defined as "anything that can be added, and that can be multiplied by a scalar".
Define the associated function `dot` that calculates the dot product between two vectors
Define the associated function `dot`, that calculates the dot product between two vectors. If the vectors are of different lengths, return `None`.
The dot product between two vectors of different length it's not defined
Note: `Vector` must implement Debug, Clone, Eq, PartialEq.
Note: `Vector` must implement `Debug`, `Clone`, `Eq` and `PartialEq`.
#### Important

Loading…
Cancel
Save