Re: Finding the maxElement of Two-Dimensional Array

2019-06-30 Thread Samir via Digitalmars-d-learn
On Sunday, 30 June 2019 at 15:38:42 UTC, a11e99z wrote: try to take slice from static arrays writeln(ta[1][].maxElement); That does what I am looking for. Thank you for the quick reply!

Re: Finding the maxElement of Two-Dimensional Array

2019-06-30 Thread a11e99z via Digitalmars-d-learn
On Sunday, 30 June 2019 at 15:22:42 UTC, Samir wrote: How come this works: int[4][2] ta = [[2, 1, 4, 3], [3, 10, 2, 5]]; writeln(ta[1].maxElement); // get error on this line try to take slice from static arrays writeln(ta[1][].maxElement); or use dynamic arrays (slices) int[][] ta = [[2, 1,