Skip to content

Commit f7fb1ed

Browse files
perbellinioayangshun
authored andcommitted
Fix typo issue (yangshun#20)
Fix the issue: yangshun#19 The given example was not correct: 'E.g. "abba" and "redblueredblue" should return true' It has ben fixed by changing the input "redblueredblue" to "redbluebluered"
1 parent 36769c6 commit f7fb1ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ String
1010
- Write a function called `eval`, which takes a string and returns a boolean. This string is allowed 6 different characters: `0`, `1`, `&`, `|`, `(`, and `)`. `eval` should evaluate the string as a boolean expression, where `0` is `false`, `1` is `true`, `&` is an `and`, and `|` is an `or`.
1111
- E.g `"(0 | (1 | 0)) & (1 & ((1 | 0) & 0))"`
1212
- Given a pattern string like `"abba"` and an input string like `"redbluebluered"`, return `true` if and only if there's a one to one mapping of letters in the pattern to substrings of the input.
13-
- E.g. `"abba"` and `"redblueredblue"` should return `true`.
13+
- E.g. `"abba"` and `"redbluebluered"` should return `true`.
1414
- E.g. `"aaaa"` and `"asdasdasdasd"` should return `true`.
1515
- E.g. `"aabb"` and `"xyzabcxzyabc"` should return `false`.
1616
- If you received a file in chunks, calculate when you have the full file. Quite an open-ended question. Can assume chunks come with start and end, or size, etc.

0 commit comments

Comments
 (0)