WebClub-NITK / Hacktoberfest-2k20

Repository for Hacktoberfest 2020 Meetup at NITK Surathkal
14 stars 53 forks source link

String Transformation #70

Closed varun-raghavendra closed 3 years ago

varun-raghavendra commented 3 years ago

Description

Find the least number of operations required to transform a given string into another given string. The allowed operations are:

For example, the minimum number of operations required for the strings "FALL" and "TALL" is 1, because you can replace F with T.

Calculate the least number of operations required for two given strings.

Input: The first input line has a string of length n that contains characters between A–Z. The second input line has a string of length m that contains characters between A–Z.

Output: Print the minimum number of required operations.

Constraints: 1 ≤ n, m ≤5000

Details

Issue requirements / progress

Resources

None

Directory Structure

Create a new folder "70_String_Transformation" inside the "Algorithms" folder and add all the necessary files and code in "Algorithms/70_String_Transformation"

Note

  1. Please claim the issue first by commenting here before starting to work on it.
  2. Once you are done with the task and have created a Pull Request, please tag @varun-raghavendra to request a review.
SPandeyCodes commented 3 years ago

Hi @varun-raghavendra . I would like to work on this issue. Assign this to me.

varun-raghavendra commented 3 years ago

I'm assigning this to @SPandeyCodes

varun-raghavendra commented 3 years ago

This issue is open for anyone to claim again