Skip to content

Commit 821c042

Browse files
committed
Minor changes
1 parent 1109d4e commit 821c042

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

docs/Momentum Library.docx

-270 Bytes
Binary file not shown.

docs/Momentum Library.pdf

7.66 KB
Binary file not shown.

src/strings/KMP/KMP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ using namespace std;
44

55
const int N = 100100;
66

7-
// KMP longest match array. Don't access it directly
7+
// KMP longest match array.
88
int F[N];
99

1010
/**

src/strings/z_algorithm/z_algorithm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ using namespace std;
44

55
const int N = 100100;
66

7-
// Z-Algorithm longest match array. Don't access it directly
7+
// Z-Algorithm longest match array.
88
int Z[N];
99

1010
/**

0 commit comments

Comments
 (0)