-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
335e271
commit 6c191bd
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* @Company Riot Games | ||
* | ||
* Given a list of kills, return the start of the 30 second window that contains the most number of kills. | ||
* A kill is defined as an integer array of the format [ timestamp, killerId, victimId ]. | ||
* If there is a tie, then return an array of all the windows. | ||
* | ||
* 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 ] | ||
*/ | ||
public int[][] mostActiveKillWindow(int[][] kills) { } |