码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] 624. Maximum Distance in Arrays

时间:2017-06-27 08:07:28      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:tar   ble   class   list   result   tco   targe   math   ++   

https://leetcode.com/problems/maximum-distance-in-arrays/

public class Solution {
    public int maxDistance(List<List<Integer>> arrays) {
        int min = arrays.get(0).get(0);
        int max = arrays.get(0).get(arrays.get(0).size() - 1);
        int result = 0;
        for (int i = 1; i < arrays.size(); i++) {
            List<Integer> current = arrays.get(i);
            result = Math.max(result, Math.abs(max - current.get(0)));
            result = Math.max(result, Math.abs(current.get(current.size() - 1) - min));
            min = Math.min(min, current.get(0));
            max = Math.max(max, current.get(current.size() - 1));
        }
        return result;
    }
}

 

[LeetCode] 624. Maximum Distance in Arrays

标签:tar   ble   class   list   result   tco   targe   math   ++   

原文地址:http://www.cnblogs.com/chencode/p/maximum-distance-in-arrays.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!