Skip to content

Files

Latest commit

f245d0f · Mar 21, 2025

History

History

problem13

Daily Coding Problem

Note: Continuous improvements and bug fixes are made within the repository to produce better solutions.

Day 13

Given an integer k and a string s, find the length of the longest substring that contains at most k distinct characters.

For example, given s = "abcba" and k = 2, the longest substring with k distinct characters is "bcb", so your function should return 3.

This problem was asked by Amazon.

Solution | Tests