Snapchat Interview Questions
Practice 115 real interview questions from Snapchat. Covers Coding & Algorithms, System Design, Machine Learning, ML System Design. For roles including Software Engineer, Machine Learning Engineer, Data Scientist, Technical Program Manager.

"I got asked a hardcore MCM DP question and I saw it on PracHub as well. Solved that question in 5 minutes. Without PracHub I doubt I could solve it in 5 hours. Though somehow didn't get hired, perhaps I guess I solved it too fast? /s"

"Believe me i'm a student here jn US. Recently interviewed for MSFT. They asked me exact question from PracHub. I saw it the night before and ignored it cause why waste time on random sites. I legit wanna go back and redo this whole thing if I had chance. Not saying will work for everyone but there is certainly some merit to that website. And i'm gonna use it in future prep from now on like lc tagged"

"10 years of experience but never worked at a top company. PracHub's senior-level questions helped me break into FAANG at 35. Age is just a number."

"I was skeptical about the 'real questions' claim, so I put it to the test. I searched for the exact question I got grilled on at my last Meta onsite... and it was right there. Word for word."

"Got a Google recruiter call on Monday, interview on Friday. Crammed PracHub for 4 days. Passed every round. This platform is a miracle worker."

"I've used LC, Glassdoor, and random Discords. Nothing comes close to the accuracy here. The questions are actually current — that's what got me. Felt like I had a cheat sheet during the interview."

"The solution quality is insane. It covers approach, edge cases, time complexity, follow-ups. Nothing else comes close."

"Legit the only resource you need. TC went from 180k -> 350k. Just memorize the top 50 for your target company and you're golden."

"PracHub Premium for one month cost me the price of two coffees a week. It landed me a $280K+ starting offer."

"Literally just signed a $600k offer. I only had 2 weeks to prep, so I focused entirely on the company-tagged lists here. If you're targeting L5+, don't overthink it."

"Coaches and bootcamp prep courses cost around $200-300 but PracHub Premium is actually less than a Netflix subscription. And it landed me a $178K offer."

"I honestly don't know how you guys gather so many real interview questions. It's almost scary. I walked into my Amazon loop and recognized 3 out of 4 problems from your database."

"Discovered PracHub 10 days before my interview. By day 5, I stopped being nervous. By interview day, I was actually excited to show what I knew."

"I recently cleared Uber interviews (strong hire in the design round) and all the questions were present in prachub."
"The search is what sold me. I typed in a really niche DP problem I got asked last year and it actually came up, full breakdown and everything. These guys are clearly updating it constantly."
Find Maximum Island Perimeter
You are given an m x n binary grid where 1 represents land and 0 represents water. An island is a group of land cells connected vertically or horizont...
Design a News Aggregator
Design a news aggregation system that collects articles from many external news sources and serves a unified feed to end users. A key constraint is th...
Design a Product Tagging Pipeline
Design an applied machine learning pipeline that automatically assigns standardized tags to products and seller content in a short-video commerce plat...
Explain Core ML Concepts
You are interviewing for a machine learning role. Answer the following core questions: 1. Explain the bias-variance decomposition of prediction error ...
Implement a Leaky Bucket Limiter
Design and implement an in-memory leaky-bucket rate limiter. A limiter is configured with: - capacity: the maximum amount of queued load the bucket ca...
Design a Trustworthy Ranking System
Design a trustworthy ranking system for a large consumer platform that ranks items such as products, videos, or posts for each user. The system should...
Implement a thread-safe rate limiter
Design and implement a per-user API rate limiter. Requirements: - Method: boolean allow(String userId, long nowMillis) returns whether the request is ...
Implement a Timestamped Counter
Implement a data structure that records calls to an increment method. Requirements: - Each call to increment(timestamp) receives an integer timestamp....
Explain BatchNorm, optimizers, and L1/L2
Prompt Answer the following ML fundamentals questions: 1. Batch Normalization (BatchNorm): - What trainable parameters does BatchNorm have? - Wh...
Implement a search autocomplete suggestion service
Design an autocomplete component that suggests the most relevant search phrases as a user types. You are given historical sentences with their usage c...
Maximize correct guesses in a hat line puzzle
Problem (Hat Guessing Strategy) There are N people standing in a line. Each person wears a hat that is either Red or Blue. - Person i can see the hats...
Design an ads ranking ML system
Prompt You are designing an ads ranking system for a large consumer app (feed/search entry point). For each request, the system receives a user contex...
Implement a custom list with iterator and map
You are asked to implement a simple generic list type without using any built-in collection classes (e.g., no ArrayList, LinkedList, Vector, etc.). Yo...
Solve Three Algorithmic Tasks
You were asked three coding problems: 1. Count events inside a time window - You are given an initial collection of event timestamps in HH:MM:SS fo...
Compute minimum escape time in a grid
You are given a 2D floor plan grid. Each cell is one of: - . empty space (walkable) - # wall/blocked (not walkable) - P a person - E an exit A person ...
Design an Instagram Stories feature
Design a backend system for an Instagram Stories–like feature. Users can post short-lived stories (photos/videos) that are visible to followers and au...
Design a Column-Queryable KV Database
Design a distributed key-value database for sparse records, where each row has a primary key and a flexible set of named columns. The system must supp...
Model an ads ranking system
Scenario You are designing the modeling approach for an ads ranking system in a feed/search product. Requirements - For each ad impression opportunity...
Design a video recommendation system
Scenario Design an end-to-end video recommendation system for a short-video or spotlight-style feed. Requirements 1. Product goals - Personalized r...
Check whether an integer is a power of two
Given a signed 32-bit integer n, return true if n is an exact power of 2, otherwise return false. A power of 2 is a number of the form 2^k where k >= ...