This application calculates the Minimum Edit Distance (MED) between two input strings and visually displays the dynamic programming table used for the calculation. The MED is highlighted on the grid to show the transformation steps clearly.
Follow these steps to set up the project locally:
-
Clone the repository:
-
Install dependencies:
Make sure you have Node.js installed. Then run:
npm install
-
Start the server:
node server.js
-
Open the application in your browser:
Navigate to
http://localhost:3000
in your web browser.
edit-distance-app/
├── public/
│ ├── index.html
│ ├── style.css
│ └── script.js
├── server.js
├── package.json
└── README.md