LeetCode 512: Game Play Analysis II
Problem Restatement We are given an Activity table. Each row records one player login on one date, including the device used and the number of games played. We need to report the device that each player used on their first login date. The result can be returned in any order. The table has columns player_id , device_id , event_date , and games_played ; (player_id, event_date) is the primary key. The...