Skip to content

Commit

Permalink
Add riot games #2
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnyoodles committed Jun 20, 2017
1 parent 335e271 commit 6c191bd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions java/interview/most-active-kill-window.java
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) { }

0 comments on commit 6c191bd

Please sign in to comment.