Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 19, 2023
commit f49453c1f3bd0b24104bad3d4d650937ba22753a
2 changes: 1 addition & 1 deletion strings/edit_distance.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def edit_distance(source: str, target: str) -> int:
source: the initial string with respect to which we are calculating the edit
distance for the target
target: the target string, formed after performing n operations on the source string

>>> edit_distance("GATTIC", "GALTIC")
1
"""
Expand Down