You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function getEvens() pure external returns(uint[]) {
uint[] memory evens = new uint[](5);
// On suit l'index du nouveau tableau
uint counter = 0;
// On itère de 1 à 10 avec une boucle `for` :
for (uint i = 1; i <= 10; i++) {
// Si `i` est pair...
if (i % 2 == 0) {
// On l'ajoute au tableau
evens[counter] = i;
// On incrémente le `counter` de 1 :
counter++;
}
}
return evens;
}
Mistake was 19 instead of 10
The text was updated successfully, but these errors were encountered:
but need to be :
Mistake was 19 instead of 10
The text was updated successfully, but these errors were encountered: