1. Handling High Concurrency in Web Server Your web server at TikTok needs to handle a high number of concurrent connections efficiently. Which server a…
Implement the Least Recently Used (LRU) and First In First Out (FIFO) cache eviction policies, respectively. Pick ONE OR MORE options. // LRU cache = Li…
Course Schedule You now have numCourses courses that need to be taken, labeled from 0 to numCourses – 1 . You are given an array prerequisites , where p…
Given a grid, there are A ‘s, B ‘s, and 0 ‘s. Find the shortest distance between any A and any B . You can move in the four directions: up, down, left,…
6. Adding Connections In a TikTok-like social media platform, users are either verified or unverified. Unverified users cannot interact with each other…