To the Top
File:  root - text - article - 2019 - 10 - edit-distance.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Problem, Data Structures and Algorithms, | English | Home Page | Category: Computing | 685 Views, 15269 Search Bots | 80 Words

Subscribe to Feed Burner | Browse | Archive
Hi, here's your problem today. This problem was recently asked by AirBNB:

Given two strings, determine the edit distance between them. The edit distance is defined as the minimum number of edits (insertion, deletion, or substitution) needed to change one string to the other.

For example, "biting" and "sitting" have an edit distance of 2 (substitute b for s, and insert a t).

Here's the signature:

def distance(s1, s2):
# Fill this in.

print distance('biting', 'sitting')
# 2
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Problem, Data Structures and Algorithms, | English | Home Page | Cateogry: Computing | 685 Views, 15269 Search Bots | 80 Words Subscribe to Feed Burner

Related Articles

  1. Algorithm Interview: Make the Largest Number
  2. [Daily Problem] Course Prerequisites
  3. Daily Interview Problem: Merge Overlapping Intervals
  4. Spreadsheet Column Title
  5. Two-Sum
  6. [Daily Problem] Longest Palindromic Substring
  7. Multitasking
  8. Algorithm Interview: No Adjacent Repeating Characters
  9. Daily Interview Problem: 3 Sum
  10. Algorithm Interview Question: H-Index

Comments (0)

    Be the first one to comment this page !


Page Edited: October 30 2020 14:21:09 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="index, follow">