All Posts

Leetcode 2424: Longest Uploaded Prefix

You are given a stream of n distinct videos, each represented by a unique number from 1 to n. You need to design a data structure that tracks the longest prefix of uploaded videos at any point in time. A prefix is considered uploaded if all videos from 1 to i (inclusive) have been uploaded to the server.

Leetcode 2502: Design Memory Allocator

Design a memory allocator class with functions to allocate and free blocks of memory. The allocator should efficiently handle consecutive memory requests and be able to free blocks based on their identifiers.

Leetcode 2526: Find Consecutive Integers from a Data Stream

You need to implement a DataStream class that processes a stream of integers and checks whether the last k integers in the stream are equal to a specified value.