8000 Merge pull request #1327 from deerawj/patch-1 · cp-algorithms/cp-algorithms@55b5fa8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 55b5fa8

Browse files
authored
Merge pull request #1327 from deerawj/patch-1
Fix typo in a comment: "occurence" -> "occurrence"
2 parents 7c2466d + 28900af commit 55b5fa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_divide_and_conquer_dp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ int brute_force() {
2626
return dp_before[n - 1];
2727
}
2828

29-
// sum of last occurrence of x - first occurence of x for all unique x in the range
29+
// sum of last occurrence of x - first occurrence of x for all unique x in the range
3030
long long C(int i, int j) {
3131
map<int, int> last;
3232

0 commit comments

Comments
 (0)
0