Code refactoring

This commit is contained in:
2022-01-14 15:46:36 +01:00
parent 2163db94d0
commit 45a1765a03
3 changed files with 95 additions and 87 deletions

View File

@ -19,7 +19,7 @@ func _Backtracking(pathMatrix []int, lseqA, lseqB int, path *[]int) []int {
lleft := 0
for i > -1 || j > -1 {
step := __get_matrix__(&pathMatrix, lseqA, i, j)
step := _GetMatrix(&pathMatrix, lseqA, i, j)
// log.Printf("I: %d J:%d -> %d\n", i, j, step)
switch {