VO Prep
  • 🏠 Home
  • 📘 Cases
  • 🔵 About us
  • 🪙 Services & Prices
  • 📨 Contact Us
  • English
    • English
    • 中文 (中国)
  • 🏠 Home
  • 📘 Cases
  • 🔵 About us
  • 🪙 Services & Prices
  • 📨 Contact Us
  • English
    • English
    • 中文 (中国)
  1. Home
  2. VO
  3. Article list
OpenAI VO Interview Problem: Credits Balance System with Expiring Grants

openai OpenAI VO Interview Problem: Credits Balance System with Expiring Grants

Credits Implement the Credits class, which should support the following operations: granting credits, subtracting credits, and getting the balance for a…

31 Views 0 Comments
openai 2026-04-28
Two Sigma VO Interview Problem: Document Compressor (Huffman Coding, Priority Queue)

Two Sigma Two Sigma VO Interview Problem: Document Compressor (Huffman Coding, Priority Queue)

Implement 2 functions: A’ = encode(A) takes in a string (ASCII only) that represents the document A , and returns the binary string representation of th…

28 Views 0 Comments
Two Sigma 2026-04-28
Amazon VO Interview Question: Suggestion of Locker Sizes (Locker Sizing / Box Fitting)

Amazon Amazon VO Interview Question: Suggestion of Locker Sizes (Locker Sizing / Box Fitting)

An Amazon pickup location has a set number of lockers in which boxes are dropped off and picked up. Boxes can come in many different sizes. Lockers come…

29 Views 0 Comments
Amazon 2026-04-28
KLA / VO Coding Interview: Company Hierarchy Data Structure

Kla KLA / VO Coding Interview: Company Hierarchy Data Structure

There are three companies: IBM, Intel, and Apple. A total of 8 people worked in these three companies. Each person can be either a manager or a direct r…

29 Views 0 Comments
Kla 2026-04-28
TikTok VO Interview Coding Question: Design a Matching Service for an Online Game

Tiktok TikTok VO Interview Coding Question: Design a Matching Service for an Online Game

You are developing an online game where 2 users can play against each other. We want to create a service which will match users with similar ranks so th…

25 Views 0 Comments
Tiktok 2026-04-28
TikTok VO Interview Coding Question: Capacity To Ship Packages Within D Days

Tiktok TikTok VO Interview Coding Question: Capacity To Ship Packages Within D Days

You are given a series of packages arranged on a conveyor belt. Each package has a specific weight, represented by the array weights , where the i th el…

28 Views 0 Comments
Tiktok 2026-04-28
TikTok VO Interview Question: Edit Distance Between 2 Strings With Dictionary-Based Cost

Tiktok TikTok VO Interview Question: Edit Distance Between 2 Strings With Dictionary-Based Cost

Edit distance between 2 strings with dictionary-based cost This is a classic edit-distance variant where transforming one string into another uses inser…

23 Views 0 Comments
Tiktok 2026-04-28
Amazon VO Interview Question: Intersection of Two Arrays

Amazon Amazon VO Interview Question: Intersection of Two Arrays

Given two integer arrays nums1 and nums2 , find their intersection. Example 1: nums1: [1, 2, 3, 4] nums2: [1, 2] result: [1, 2] This problem asks for th…

26 Views 0 Comments
Amazon 2026-04-28
Intuit OA Interview Question: RunCollection personalBest and run-time statistics

Intuit Intuit OA Interview Question: RunCollection personalBest and run-time statistics

We are writing software to collect and manage data on how fast racers can complete obstacle courses. An obstacle course is a series of difficult physica…

30 Views 0 Comments
Intuit 2026-04-28
Fireworksai / VO Coding Interview Question: Modal Vector

Fireworksai Fireworksai / VO Coding Interview Question: Modal Vector

ModalVector vector1 = [1.0, 1.0, 1.0, 2.0, 0.0, 1.0] vector2 = [4.0, 4.0, 2.0, 4.0, 4.0, 0.0] vector1.dot(vector2) = 1*4 + 1*4 + 1*2 + 2*4 + 0*4 + 1*0 =…

31 Views 0 Comments
Fireworksai 2026-04-28
Citadel OA Interview Coding Question: Paint House / Find Eventual Safe States

Citadel Citadel OA Interview Coding Question: Paint House / Find Eventual Safe States

You have to paint all the houses such that no two adjacent houses have the same color. The cost of painting each house with a certain color is represent…

23 Views 0 Comments
Citadel 2026-04-28
DoorDash Coding Interview / Online Assessment: REST API Aggregation for Bootstrap Data

Doordash DoorDash Coding Interview / Online Assessment: REST API Aggregation for Bootstrap Data

Create a REST API that exposes the following endpoint: GET /api/bootstrap Request Input User Id Response Address Data: address including the user’s name…

36 Views 0 Comments
Doordash 2026-04-28
Startup VO Interview Coding Question: Serialize and Deserialize Binary Tree

Startup Startup VO Interview Coding Question: Serialize and Deserialize Binary Tree

Given a binary tree, create two functions: one that serializes the binary tree into a string and one that deserializes a serialized string back into a b…

23 Views 0 Comments
Startup 2026-04-28
Google VO Interview Question: Longest Increasing-by-1 Subsequence

Google Google VO Interview Question: Longest Increasing-by-1 Subsequence

Write a function which, given an array of integers, returns the length of the longest subsequence where every next value is 1 bigger than the previous o…

32 Views 0 Comments
Google 2026-04-28
Meta OA Interview Question: Find All Nodes at Distance K from a Target Node in a Binary Tree

Meta Meta OA Interview Question: Find All Nodes at Distance K from a Target Node in a Binary Tree

Given a binary tree (pointer to the root), a target node anywhere in the tree, and an integer value K , return a list of the values of all the nodes tha…

26 Views 0 Comments
Meta 2026-04-28
Uber VO Interview Question: Island Perimeter

Uber Uber VO Interview Question: Island Perimeter

You’re given an R-by-C array of integers that represents a top-down map of a building construction site, where each location in the array represents a o…

30 Views 0 Comments
Uber 2026-04-28
Meta OA Interview Question: Messaging API Design

Meta Meta OA Interview Question: Messaging API Design

Systems Diagram Do not spend time trying to make this pretty. It is just a tool to understand your thought process and have a shared understanding of th…

31 Views 0 Comments
Meta 2026-04-28
Snapchat VO Interview Question: Fuse Convolution and BatchNorm Layers in PyTorch

Snapchat Snapchat VO Interview Question: Fuse Convolution and BatchNorm Layers in PyTorch

You need to implement a function that fuses batch normalization layers within a PyTorch Sequential module. To be more precise, the objective is to merge…

21 Views 0 Comments
Snapchat 2026-04-28
Pure Storage Interview Coding Question: Callback Registration and Event Dispatch

Purestorage Pure Storage Interview Coding Question: Callback Registration and Event Dispatch

Implement a simple event system with two operations. public interface Callback { void run(); } class Event { void registerCallback(Callback cb) { // fil…

25 Views 0 Comments
Purestorage 2026-04-28
Centific / VO OA Interview Problem: Can You Reach the Last Traffic Light?

Centific Centific / VO OA Interview Problem: Can You Reach the Last Traffic Light?

Can You Reach the Last Traffic Light? distances = [10, 17, 25] traffic lights distance clock = [3, 5, 10] each has a clock max_time = 1200 car in zero,…

28 Views 0 Comments
Centific 2026-04-28
  • «
  • 1
  • ...
  • 9
  • 10
  • 11
  • 12
  • 13
  • ...
  • 30
  • »
Cases search

Contact me

  • Telegram. https://t.me/csoahelp
  • Whatsapp. +1 818 923 6994
  • Email.csonsitehelp@gmail.com
  • Wechat. csvohelp
wechat

------- WeChat QR Code↑ -----

In order to ensure that I contact and evaluate your interview and assignment as soon as possible, please indicate your specific requirements for the interview and assignment.

Code Guaranteed Unique 100% Plagiarism Free

Complete Confidentiality 100% Confidentiality

Guaranteed Quality 100% Quality Assurance

Friendly reminder

My Google rankings are based on quality and word-of-mouth, not the same as paid rankings with an Ad logo. Programhelp's rankings have never needed to be paid to make a presence.

Adobe
Adyen
Affirm
Airbnb
Akuna Capital
Ali
Alphagrep
Amazon
Anthropic
Anthropic Fellows
Apex
Appfolio
Apple
Appliedintuition
Applovin
Apppllp
Arrowstreet
Articul
Asml
Atlassian
Autodesk
Axon
BBC
Block
bloomberg
Bnp
Bookings
Capital One
Centific
Circle
Citadel
Cloudkitchen
CME
coinbase
Cresta
Databrick
Deloitte
Digital+ibm
Doordash
Ebay
Eclipse
Epic
Experian
Fireworksai
Flexport
Fortinet
Geico
Goldman
Google
Grammarly
GTS
HPE
Hrt
Huawei
Intel
Intuit
Jane
Karat
Kla
Klaviyo
Lendbuzz
LinkedIn
Lyft
Mathworks
Maxxtraderoa
Mckinsey
Meta
Methy
Microsoft
NBCU
Netflix
Nimble Robotics
Nooks
NVIDIA
OA
Okx
openai
Optiver
Oracle
P
Palo
paloalto
Paypal
Pin
Pinterest
Point
Ponyai
Purestorage
QRT
Rbc
Robinhood
Roblox
Rokos Capital
Rubrik
Salesforce
Salient
Scale Ai
Sense
Shopify
Sigma
Snapchat
Snowflake
Sofi
Startup
Statestreet
Stripe
Tesla
Tiktok
Trexquant
Tt
TURO
Two Sigma
Uber
Unicorns
Verisk
Visa
VO
voleon
Waabi
Walmart
Wayfair
Waymo
Weee
Whatnot
Workday
X
千禧年
华为校招
台积电
量化
高盛
Copyright © 2010-2028 All Rights Reserved. Designed by:VOprep.com
 Theme by Puock