[Solved] How to approach this hackerrank puzzle?


I could not post it to comment section. Please see below:

List<Integer> integers = Arrays.asList(1, 2, 3, 4);

int i = 0;
StringBuilder sb = new StringBuilder("[");
for (int value : integers) {
    sb.append((i == 0) ? "" : (i % 2 == 0 ? "," : ":")).append(value);
    i++;
}
sb.append("]");
System.out.println(sb.toString());

Output is:

[1:2,3:4]

0

solved How to approach this hackerrank puzzle?