Hello coders (especially Java coders),
it seems that even when we have Java 7 available for submissions, code is compiled with Java 6.
I found it when submitted code using diamond operator.
List<Integer> list = new ArrayList<>();
changing the above code to Java 6 version fixed the compilation problem
List<Integer> list = new ArrayList<Integer>();
…just letting you know