Hi! Error I found in this function. https://github.com/jraleman/42_Exam-C/edit/master/level02/max.c
In this function, the while loop should be:
while (len--)
{
if (maxvalue < tab[i])
maxvalue = tab[i];
i++;
}
otherwise it only ends up comparing the last two integers in the array and returns the wrong result.