Skip to content

Commit d54678c

Browse files
committed
Revert "Merge pull request #215 from Athi223/main"
This reverts commit 08d74be, reversing changes made to e8359dc.
1 parent e03e275 commit d54678c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Searching/KMP algorithm for pattern searching/README.md renamed to Searching/KMP algorithm for pattern searching/READMEkmp.md.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Implement KMP algorithm for pattern search
22

3-
## Time Complexity O(N) which best possible time we can get in any pattern serching algorithm
3+
##
4+
5+
#### Time Complexity O(N) which best possible time we can get in any pattern serching algorithm
46

57
This Function return indext of first element of match pattern elements as output.
68

79

10+
811

912
### Example 1:
1013
```

website/src/Categories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default function Categories(props) {
1212
axios.get('https://api.github.com/repos/skully-coder/competitiveprogramming/contents')
1313
.then(response => {
1414
response.data.forEach(content => {
15-
if(content.name !== "website" && !content.name.startsWith('.') && content.type === "dir") {
15+
if(!content.name.startsWith('.') && content.type === "dir") {
1616
setCategories(categories => categories.concat({ name: content.name, url: content.git_url }))
1717
}
1818
})

0 commit comments

Comments
 (0)