3536373839404142434445
List<Bar> res = newArrayList(); for (int i = 0; i < widths.size(); i++) { BarColor color = i % 2 == 0 ? BarColor.BLACK : BarColor.WHITE; BarWidth width = widths.get(i); Bar bar = Bar.of(color, width); res.add(bar); } return res; }