← Back to companies
[ OK ] Loaded —
[ INFO ]
$ cd
$ ls -lt
01
02
03
04
05
$ ls -lt
01
02
03
04
05
user@intervues:~/$
Given a list of API call log entries, find the most frequently occurring call. If multiple calls have the same maximum frequency, return the one that appears first in the input.
Example:
Input: ["GET /home", "POST /login", "GET /home", "GET /search"] Output: "GET /home"
Follow-ups: