exercism / r

Exercism exercises in R.
https://exercism.org/tracks/r
MIT License
27 stars 38 forks source link

Add `matrix` exercise #360

Closed ErikSchierboom closed 1 month ago

colinleach commented 1 month ago

It took me a while to work out why you need both unlist and as.vector. It really tries hard to hold on to the names otherwise.

Use of unname instead of as.vector does the same thing, and may be a bit more clear in its intention?

ErikSchierboom commented 1 month ago

Fair point! i've updated