Обсуждение
Не публикуйте здесь решения. Эта страница предназначена только для того, чтобы задавать вопросы о проблеме, давать советы, если вы застряли, или обсуждать проблему в целом.
Загрузка
Минутку, получение данных с сервера
user171027 It looks like the solution you submitted is almost there, but there's a subtle issue in how you're determining the maximum value in the array.
You're initializing m to 0, and then comparing it to each element in the array to find the maximum value. However, what happens if all the numbers in the array are negative? Since m starts at 0, any negative number will never be considered the maximum.