All Coding Challenges

Complete collection of algorithmic problems and coding challenge solutions

Longest Substring Without Repeating Characters

Medium

Given a string s, find the length of the longest substring without duplicate characters.

LeetCode View Solution

3Sum

Medium

Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.

LeetCode View Solution

Add Two Numbers

Medium

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list.

LeetCode View Solution