Navigation

Tech Articles

Explore deep-dives, coding tutorials, and tech insights from the community.

K Kamikazee112 4 weeks ago
1 Comment
Binary Exponentiation

Binary Exponentiation¶ Binary exponentiation (also known as exponentiation by squaring) is a trick which allows to calculate   $a^n$ , where   $n$  is a non-...

Math Bitmasks
Read Article
K Kamikazee112 4 weeks ago
0 Comments
Sparse Table

Sparse Table¶ Sparse Table is a data structure, that allows answering range queries. It can answer most range queries in   $O(\log n)$ , but its true power is...

Data Structures Dynamic Programming Bitmasks
Read Article