Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~324 People Reached
Favorite Forums
Favorite Tags
Member Avatar for basketball8533

Hey guys can you help me convert this code into java... i started a little... [CODE] def minEditDistR(target, source): """ Minimum edit distance. Straight from the recurrence. """ i = len(target); j = len(source) if i == 0: return j elif j == 0: return i return(min(minEditDistR(target[:i-1],source)+1, minEditDistR(target, source[:j-1])+1, minEditDistR(target[:i-1], …

Member Avatar for DarkLightning7
0
178
Member Avatar for basketball8533

Hey guys can you help me convert this code into java... i started a little... [CODE] def  minEditDistR(target, source):    """ Minimum edit distance. Straight from the recurrence. """    i = len(target); j = len(source)    if i == 0:  return j    elif j == 0: return i …

Member Avatar for DecreaseEntropy
0
146