← Back to Categories

💻 Coding

Programming challenges, algorithms, and code generation

FizzBuzz

Easy

Write a function that prints numbers from 1 to 100. For multiples of 3, print "Fizz". For multiples of 5, print "Buzz". For multiples of both, print "...

Run Match →

Reverse a Linked List

Medium

Implement a function to reverse a singly linked list. Explain your approach.

Run Match →

LRU Cache

Hard

Design and implement an LRU (Least Recently Used) cache with O(1) get and put operations.

Run Match →