diff --git a/uil/uil-practice-armstrong/test-1/EXPLANATIOn.md b/uil/uil-practice-armstrong/test-1/EXPLANATIOn.md index 807f0c0..e088cd2 100644 --- a/uil/uil-practice-armstrong/test-1/EXPLANATIOn.md +++ b/uil/uil-practice-armstrong/test-1/EXPLANATIOn.md @@ -531,6 +531,11 @@ It replaces spaces, commas, brackets, and all other characters that *aren't dig ## Question 32 +This is a more "trivia-like" question that most. Arrays.sort, in *Java SE 7*. +The array in question is a primitive array, which is important, as the Arrays.sort() method will sort based on the content of the array. +If the array is for objects, it will use "Timsort", which is a hybrid of *Merge Sort* and *Insertion Sort*. +Otherwise, for primitives, it will use *Dual-Pivot Quicksort*. + ## Question 33 ## Question 34