Write an algorithm for finding the minimum(smallest) number from a group of 10 numbers | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

Write an algorithm for finding the minimum(smallest) number from a group of 10 numbers

13th Sep 2018, 10:22 AM
Michael
3 Answers
+ 2
Please provide a link to your Code Playground code so we can help you troubleshoot the specific issues you are running into. The Code Playground should be relatively easy to find in the website version of SoloLearn, but if you are in the app version, it can be accessed via the curly braces, green circle with plus sign to add a new project, then select the project type. Looking forward.
13th Sep 2018, 10:38 AM
Janningā­
Janningā­ - avatar
+ 2
Please show your own attempts before asking for code.
13th Sep 2018, 11:38 AM
Hatsy Rei
Hatsy Rei - avatar
+ 1
One possible way to do it: Use a variable and set it to the first value of the array/list. Then iterate over the array and whenever you find a value that is smaller than the value currently held in the variable, update the variable accordingly. Once you iterated over the whole array, the variable will have the same value of the smallest number in the array
13th Sep 2018, 11:59 AM
Anna
Anna - avatar