Coding Practice Arena
Master algorithms and ace coding interviews
0
Solved
0
Attempted
0
Streak Days
0
Points
Ready to Practice?
Start with a curated set of problems or choose a category below
Practice by Category
Choose a topic to focus on
Data Structures & Algorithms
Master core DSA concepts
Arrays & Hashing
Array manipulation techniques
String Algorithms
String processing problems
Dynamic Programming
Optimization problems
Graphs & Trees
Graph traversal & manipulation
Interview Prep
Top company questions
Popular Problems
Most attempted by the community
Two Sum
EasyArraysGiven an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
Reverse String
EasyStringsWrite a function that reverses a string. The input string is given as an array of characters.
Valid Palindrome
MediumStringsA phrase is a palindrome if it reads the same forward and backward. Determine if a given string is a palindrome.
Merge Two Sorted Lists
EasyLinked ListsMerge two sorted linked lists and return it as a sorted list.
Binary Search
EasyBinary SearchGiven a sorted array of integers, write a function to search for a target value using binary search.
