• + 1 comment

    If I'm not mistaken this solution uses 4 loops to solve the problem (:

    Array.ConvertAll(arr_temp, Int64.Parse); <--- This is a loop. arr.Max(); <--- This is also a loop. arr.Min(); <--- And this is also a loop. for (int i = 0; i < arr.Length; i++) <--- This we know is a loop :D