Skip to content

Commit 50a9f60

Browse files
refactor 583
1 parent 4cbe717 commit 50a9f60

File tree

1 file changed

+0
-15
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-15
lines changed

src/main/java/com/fishercoder/solutions/_583.java

-15
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 583. Delete Operation for Two Strings
5-
*
6-
* Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in each step you can delete one character in either string.
7-
8-
Example 1:
9-
Input: "sea", "eat"
10-
Output: 2
11-
12-
Explanation: You need one step to make "sea" to "ea" and another step to make "eat" to "ea".
13-
14-
Note:
15-
The length of given words won't exceed 500.
16-
Characters in given words can only be lower-case letters.
17-
*/
183
public class _583 {
194

205
public static class Solution1 {

0 commit comments

Comments
 (0)