码迷,mamicode.com
首页 > 编程语言 > 详细

二位数组数据统计

时间:2019-07-17 18:26:00      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:java   stream   href   color   turn   bsp   com   ati   port   

 

https://www.codewars.com/kata/how-many-stairs-will-suzuki-climb-in-20-years/train/java

import java.util.Arrays;

public class Kata
{
    public static long stairsIn20(int[][] stairs)
    {
        return 20 * Arrays.stream(stairs).flatMapToInt(arr -> Arrays.stream(arr)).sum();
    }
}

 

My Solution :

    public static long stairsIn20(int[][] stairs) {
        long result = 0;

        for (int i = 0; i < stairs.length; i++) {
            for (int j = 0; j < stairs[i].length; j++) {
                result += stairs[i][j];
            }
        }
        return result * 20;
    }

 

二位数组数据统计

标签:java   stream   href   color   turn   bsp   com   ati   port   

原文地址:https://www.cnblogs.com/ukzq/p/11202670.html

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