Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.

Commit 3c2a0fb

Browse files
committed
typo fix
remove redundant words
1 parent 3022133 commit 3c2a0fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

problems/anagram-detection/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Anagram Detection
22

3-
Write a function that accepts two parameters, a parent and a child string. Determine how many times the child string - or an anagram of the of the child string - appears in the parent string. There is a solution which can be done in near instant time.
3+
Write a function that accepts two parameters, a parent and a child string. Determine how many times the child string - or an anagram of the child string - appears in the parent string. There is a solution which can be done in near instant time.
44

55
```js
66
f('AdnBndAndBdaBn', 'dAn') // 4 ("Adn", "ndA", "dAn", "And")

0 commit comments

Comments
 (0)