diff --git a/java/interview/most-active-kill-window.java b/java/interview/most-active-kill-window.java index 1d7275e..8105de1 100644 --- a/java/interview/most-active-kill-window.java +++ b/java/interview/most-active-kill-window.java @@ -7,5 +7,7 @@ * * The return format should be a list of all the windows with the most number of kills in the format of an array. * [ timestamp, number of kills ] + * + * Note: the list of kills are not in any specific order. */ public int[][] mostActiveKillWindow(int[][] kills) { } \ No newline at end of file