二位数组数据统计
Posted ukzq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二位数组数据统计相关的知识,希望对你有一定的参考价值。
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;
以上是关于二位数组数据统计的主要内容,如果未能解决你的问题,请参考以下文章