TheAlgorithms / MATLAB-Octave

This repository contains algorithms written in MATLAB/Octave. Developing algorithms in the MATLAB environment empowers you to explore and refine ideas, and enables you test and verify your algorithm.
MIT License
373 stars 176 forks source link

added select sort #30

Closed AndresContreras96 closed 4 years ago

AndresContreras96 commented 4 years ago

157/5000 Hello! I did the select selection algorithm, I saw that it was not implemented yet. Feedback would be very appreciated since it is my first contribution in open source world

cozek commented 4 years ago

Hi Andres. Overall I like you code style. Nice indentations and good use of variable names. In the future try adding some documentation to your code, like a brief explanation of the function (which you have done nicely). The expected data type of the function arguments. Take a look at the code style guide in #9 .

Thanks for your contribution.