This folder contains four files and one directory:

- DPEditDistance.kt
- MemEditDistance.kt
- EditDistanceTest.kt
- README.txt
- sequence

You are to fill in the missing code in `DPEditDistance.kt`
and `MemEditDistance.kt`.  The file `EditDistanceTest.kt`
is the test harness for running and comparing the functions
`dpEditDistance()` and `memEditDistance` on the same pair
of strings.  The `sequence` directory contains input files
of sample DNA sequences.

To compile all Kotlin programs, type

    kotlinc *.kt

To run `DPEditDistanceKt` on `example10.txt`, type

    kotlin DpLcsKt < sequence/example10.txt

To run `MemEditDistanceKt` on `example10.txt`, type

    kotlin MemLcsKt < sequence/example10.txt

etc.
