Skip to content

Commit dfc5b3e

Browse files
authored
Merge branch 'cp-algorithms:main' into main
2 parents a3db1b2 + 5c2c8d0 commit dfc5b3e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/graph/hld.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,3 +183,8 @@ int query(int a, int b) {
183183
## Practice problems
184184

185185
- [SPOJ - QTREE - Query on a tree](https://www.spoj.com/problems/QTREE/)
186+
- [CSES - Path Queries II](https://cses.fi/problemset/task/2134)
187+
- [Codeforces - Subway Lines](https://codeforces.com/gym/101908/problem/L)
188+
- [Codeforces - Tree Queries](https://codeforces.com/contest/1254/problem/D)
189+
- [Codeforces - Tree or not Tree](https://codeforces.com/contest/117/problem/E)
190+
- [Codeforces - The Tree](https://codeforces.com/contest/1017/problem/G)

src/sequences/longest_increasing_subsequence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ This is in fact nearly the same problem.
300300
Only now it is allowed to use identical numbers in the subsequence.
301301

302302
The solution is essentially also nearly the same.
303-
We just have to change the inequality signs, and make a slightly modification to the binary search.
303+
We just have to change the inequality signs, and make a slight modification to the binary search.
304304

305305
### Number of longest increasing subsequences
306306

0 commit comments

Comments
 (0)