首页 > 代码库 > Pascla's Triangle
Pascla's Triangle
public class Solution { public List<List<Integer>> generate(int numRows) { List<List<Integer>> result = new ArrayList<List<Integer>>(); if (numRows <=0) return result; ArrayList<Integer> oldLine = new ArrayList<Integer>(); oldLine.add(1); result.add(oldLine); for (int i=1; i<numRows; i++) { ArrayList<Integer> newLine = new ArrayList<Integer>(); newLine.add(1); for (int j=1; j<i; j++) { newLine.add(oldLine.get(j-1)+oldLine.get(j)); } newLine.add(1); result.add(newLine); oldLine = newLine; } return result; }}
Pascla's Triangle
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。