Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit10df323

Browse files
committed
tmptmp
1 parent0b898bc commit10df323

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

‎mkdocs.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,29 @@ site_name: cp-algorithms
22
docs_dir:src
33
theme:
44
name:material
5+
custom_dir:src/overrides
6+
palette:
7+
-media:"(prefers-color-scheme: light)"
8+
scheme:default
9+
primary:deep purple
10+
# accent: red
11+
toggle:
12+
icon:material/toggle-switch-off-outline
13+
name:Switch to dark mode
14+
-media:"(prefers-color-scheme: dark)"
15+
scheme:slate
16+
toggle:
17+
icon:material/toggle-switch
18+
name:Switch to light mode
519
repo_url:https://github.com/e-maxx-eng/e-maxx-eng
620
edit_uri:edit/master/src/
21+
extra:
22+
social:
23+
-icon:fontawesome/brands/github
24+
link:https://github.com/e-maxx-eng/e-maxx-eng
25+
name:e-maxx-eng
26+
copyright:Copyright © 2014 - 2021 by https://github.com/e-maxx-eng
27+
728
markdown_extensions:
829
-pymdownx.arithmatex:
930
generic:true

‎src/data_structures/segment_tree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ This interesting variation of the Segment Tree can be solved in exactly the same
332332
it is enough to store the GCD / LCM of the corresponding vertex in each vertex of the tree.
333333
Combining two vertices can be done by computing the GCM / LCM of both vertices.
334334

335-
####<aname="counting-zero-search-kth"></a>Counting the number of zeros, searching for the$k$-th zero
335+
####Counting the number of zeros, searching for the $k$-th zero {#counting-zero-search-kth data-toc-label="Counting the number of zeros, searching for thek-th zero"}
336336

337337
In this problem we want to find the number of zeros in a given range, and additionally find the index of the $k$-th zero using a second function.
338338

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp