wagner-fisher & werner algorithms working

This commit is contained in:
Lukas Werner
2022-06-13 11:17:19 -07:00
parent f78b140bf1
commit ab87dbb8ee
7 changed files with 114 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package editdistance
import "testing"
func TestMin(t *testing.T) {
mins := min(1, 2, 3, 4, 5)
if mins != 1 {
t.Errorf("Min was incorrect, got %d, want %d.", mins, 1)
}
}