Question d’entretien chez Argo Data

Write code to find the smallest number in an array.

Réponses aux questions d'entretien

Utilisateur anonyme

22 oct. 2015

this answer is wrong if(small>array[idx])

2

Utilisateur anonyme

8 mars 2015

small = array [0] for (int idx = 1; idx < array.length; idx ++){ if (small < array [idx]) small = array [idx] }

1