Skip to content

Commit af9df66

Browse files
refactor 30
1 parent b225110 commit af9df66

File tree

1 file changed

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

1 file changed

+0
-13
lines changed

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,6 @@
55
import java.util.List;
66
import java.util.Map;
77

8-
/**
9-
* 30. Substring with Concatenation of All Words
10-
*
11-
* You are given a string, s, and a list of words, words, that are all of the same length.
12-
* Find all starting indices of substring(s) in s that is a concatenation of each word in words exactly once and without any intervening characters.
13-
14-
For example, given:
15-
s: "barfoothefoobarman"
16-
words: ["foo", "bar"]
17-
18-
You should return the indices: [0,9].
19-
(order does not matter).
20-
*/
218
public class _30 {
229

2310
public static class Solution1 {

0 commit comments

Comments
 (0)