Skip to content

Commit 9fae6f6

Browse files
committed
fix title and hide navbar
1 parent fab2d0a commit 9fae6f6

File tree

125 files changed

+624
-131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+624
-131
lines changed

src/algebra/fibonacci-numbers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The encoding of an integer $n$ can be done with a simple greedy algorithm:
7373

7474
To decode a code word, first remove the final $1$. Then, if the $i$-th bit is set (indexing from 0 from the leftmost to the rightmost bit), sum $F_{i+2}$ to the number.
7575

76-
## Formulas for the n-th Fibonacci number
76+
## Formulas for the $n^{\text{th}}$ Fibonacci number { data-toc-label='Formula for the <script type="math/tex">n^{\text{th}}</script> Fibonacci number' }
7777

7878
The $n$-th Fibonacci number can be easily found in $O(n)$ by computing the numbers one by one up to $n$. However, there are also faster ways, as we will see.
7979

src/algebra/sieve-of-eratosthenes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<!--?title Sieve of Eratosthenes -->
1+
---
2+
title: Sieve of Eratosthenes
3+
hide:
4+
- navigation
5+
---
26
# Sieve of Eratosthenes
37

48
Sieve of Eratosthenes is an algorithm for finding all the prime numbers in a segment $[1;n]$ using $O(n \log \log n)$ operations.

src/combinatorics/binomial-coefficients.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<!--?title Binomial Coefficients-->
1+
---
2+
title: Binomial Coefficients
3+
hide:
4+
- navigation
5+
---
26
# Binomial Coefficients
37

48
Binomial coefficients $\binom n k$ are the number of ways to select a set of $k$ elements from $n$ different elements without taking into account the order of arrangement of these elements (i.e., the number of unordered sets).

src/combinatorics/bishops-on-chessboard.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
<!--?title Placing Bishops on a Chessboard -->
2-
1+
---
2+
title: Placing Bishops on a Chessboard
3+
hide:
4+
- navigation
5+
---
36
# Placing Bishops on a Chessboard
47

58
Find the number of ways to place $K$ bishops on an $N \times N$ chessboard so that no two bishops attack each other.

src/combinatorics/bracket_sequences.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<!--?title Balanced bracket sequences -->
1+
---
2+
title: Balanced bracket sequences
3+
hide:
4+
- navigation
5+
---
26
# Balanced bracket sequences
37

48
A **balanced bracket sequence** is a string consisting of only brackets, such that this sequence, when inserted certain numbers and mathematical operations, gives a valid mathematical expression.

src/combinatorics/burnside.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<!--?title Burnside's lemma / Pólya enumeration theorem -->
1+
---
2+
title: Burnside's lemma / Pólya enumeration theorem
3+
hide:
4+
- navigation
5+
---
26
# Burnside's lemma / Pólya enumeration theorem
37

48
## Burnside's lemma

src/combinatorics/catalan-numbers.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
<!--?title Catalan Numbers and its Applications -->
2-
1+
---
2+
title: Catalan Numbers and its Applications
3+
hide:
4+
- navigation
5+
---
36
# Catalan Numbers
47
Catalan numbers is a number sequence, which is found useful in a number of combinatorial problems, often involving recursively-defined objects.
58

src/combinatorics/counting_labeled_graphs.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<!--?title Counting labeled graphs -->
1+
---
2+
title: Counting labeled graphs
3+
hide:
4+
- navigation
5+
---
26
# Counting labeled graphs
37

48
## Labeled graphs

src/combinatorics/generating_combinations.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<!--?title Generating all K-combinations -->
1+
---
2+
title: Generating all K
3+
hide:
4+
- navigation
5+
---
26
# Generating all $K$-combinations
37

48
In this article we will discuss the problem of generating all $K$-combinations.

src/combinatorics/inclusion-exclusion.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<!--?title The Inclusion-Exclusion Principle-->
1+
---
2+
title: The Inclusion
3+
hide:
4+
- navigation
5+
---
26
# The Inclusion-Exclusion Principle
37

48
The inclusion-exclusion principle is an important combinatorial way to compute the size of a set or the probability of complex events. It relates the sizes of individual sets with their union.

0 commit comments

Comments
 (0)