Newsgroups: comp.lang.apl
Path: watmath!watserv2.uwaterloo.ca!mach1!torn!utcsri!rpi!zaphod.mps.ohio-state.edu!howland.reston.ans.net!spool.mu.edu!yale.edu!newsserver.jvnc.net!phage!wchang
From: wchang@phage.cshl.org (William Chang in Marr Lab - CSHL)
Subject: Re: Quality of Implementation
Message-ID: <C1uFr0.9oA@phage.cshl.org>
Keywords: Needless copying, one data point.
Organization: Cold Spring Harbor Lab, Long Is New York
References: <1539@kepler1.rentec.com> <C1uEv8.96A@phage.cshl.org>
Date: Tue, 2 Feb 1993 22:57:00 GMT
Lines: 12

In article <C1uEv8.96A@phage.cshl.org> I wrote mistakenly:
>Here's a simple dynamic programming algorithm for
>"approximate string matching":
>
>...
>so D[0,j] = 0; D[i,0] = i; /* boundary conditions */

should be

    D[0,j] = j; D[i,0] = 0; /* boundary conditions */

-- Bill Chang (wchang@cshl.org)
