You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could there be a flag -- something like array_out = True -- to have the function spit out the entire dynamic programming array, as opposed to just the bottom corner entry that is the final solution?
For example, in c_levenshtein:
if array_out == True:
return d
else:
ret_val = Array2D_0_get(d, len1, len2)
Array2D_del(d)
return ret_val
The text was updated successfully, but these errors were encountered:
Could there be a flag -- something like array_out = True -- to have the function spit out the entire dynamic programming array, as opposed to just the bottom corner entry that is the final solution?
For example, in
c_levenshtein
:The text was updated successfully, but these errors were encountered: