From 35c2c6787fb87e27544521ea915a602afe09ac3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Wed, 5 Feb 2020 16:56:42 +0100 Subject: =?UTF-8?q?Labbtillf=C3=A4lle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- labb2/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'labb2/lib.py') diff --git a/labb2/lib.py b/labb2/lib.py index c2e12eb..d48096f 100755 --- a/labb2/lib.py +++ b/labb2/lib.py @@ -1,5 +1,5 @@ def minimum_edit_distance(s1, s2): - """Returnera minimum edit distance för strängarna s1 och s2).""" + """Returnera minimum edit distance för strängarna s1 och s2.""" # byt värde på s1 och s2 om s1 är den längre strängen if len(s1) > len(s2): s1, s2 = s2, s1 -- cgit v1.2.1