Coding Bootcamp > Java - Coding Bootcamp > Flashcards
Syntax for sorting
java.util.Arrays.sort(content);
Time complexity of merge sort
Merge sort: n log (n) all cases
Syntax to define a HashSet
Set set = new HashSet(){{ add("a");
}};
How to concatenate strings
String s3 = s1 + s2;