如何从二维数组列表中的特定位置提取整数?
如果我有一个由 ArrayList
组成的 ArrayList
,请说“biglist”。
[[1,2,3],[4,3,2],[5,1,2],[6,4,7],[7,1,2]]
我如何计算第一行中的所有 1(即 1 4 5 6 7,总共一个 1),第二行也是如此?
我在这方面失败了,所以任何帮助或指导将不胜感激。
If I have an ArrayList
of ArrayList
s say "biglist".
[[1,2,3],[4,3,2],[5,1,2],[6,4,7],[7,1,2]]
How could I tally all of the 1's in the first row (so 1 4 5 6 7, total of one 1), and the same for the second etc?
I lost on this so any help or guidance would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否尝试过类似的操作:
注意:我说columnIndex是因为我将您的
bigList
视为矩阵。Have you tried something like:
NOTE: I say columnIndex because I see your
bigList
as a matrix.您可以使用以下方法计算连续看到特定数字的次数:
对于示例数组
[[1,2,3],[4,3,2],[5,1,2] ,[6,4,7],[7,1,2]]
,这将打印出:You can count the number of times you see a particular number in a row using something like:
For your sample array
[[1,2,3],[4,3,2],[5,1,2],[6,4,7],[7,1,2]]
, this would print out: