Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 2.22 KB

README.md

File metadata and controls

63 lines (41 loc) · 2.22 KB

Utils

Two Pointers

Two Pointers is an algorithm technique that uses two or more pointers.

Two Pointers | C++ code

References in English

Challenges

Binary Search

Binary Search is an algorithm technique that reduces solution space by half at one iteration. Although Binary Search often is used in which we search a specific value in a given sorted array, it is not limited. We can use this technique in many problems. It's a pretty powerful technique.

Binary Search (Integer) | C++ code Binary Search (Double) | C++ code

Challenges

Dice

🚧WIP

BigInt

🚧WIP

modint

Arithmetic in Modulo

modint provides arithmetic operations in modulo.

modint | C++ code

References in Japanese

Quick Select

Selects the k-th smallest element of an unsorted array in linear time.

quick_select | C++ code

References in English