← All problemsSign in

Soviet String Distance

Given two strings, $A$ and $B$, your task is to find the Levenshtein distance between them. Mathematically, the Levenshtein distance between two strings, $A$ and $B$, having lengths, $|A|$ and $|B|$, is given by $lev_{a,b}(|A|, |B|)$ where - $lev_{a,b}(i, j) = \left\{\begin{array}{ll} max(i,j), & if\;min(i, j) = 0 \\\ min \left\{\begin{array}{II} lev_{a, b}(i-1,j)+1 \\\ lev_{a,b}(i, j-1)+1 \\\ l

HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17

CodeSearch Tutor

Hints, not spoilers — it won’t hand over the full solution unless you insist.

voice by Sarvam AI

Sign in to chat with the tutor and save your progress.

Sign in to start