著名的皮质小人儿# Joke - 肚皮舞运动
T*7
1 楼
public class Solution {
public List
public List
- > generate(int numRows)
{
List
- > ret = new ArrayList
- >();
List
for(int i = 0;i
for(int j=i-1;j>0;j--) {
res.set(j, res.get(j-1)+res.get(j));
}
ret.add(new ArrayList
}
return ret;
}
}