Basecamp
    Home
    Problems
    Contests
    Courses
    Rating
    Posts
    Discord
Posts
Sign in

Posts

Announcement
Article
Tutorial
preview
medv
•Article•6 months ago
Two pointers technique

The Two Pointers technique is a strategy commonly used in computer science and programming for solving problems involving arrays or sequences. It involves using two pointers that traverse the array or sequence from different positions, often moving in opposite directions or at different speeds. This technique is particularly useful for solving problems related to searching, optimization, or manipulation of arrays efficiently.

17
5 replies
Continue reading
preview
denisovkostya
•Article•7 months ago
XOR Basis with deletions

This article uses terms from linear algebra. If you understand them, you can skip this section.

36
1 reply
Continue reading
preview
medv
•Article•10 months ago
Exploring recursion

The objective of this lesson is to introduce students to the concept of recursion, understanding its fundamentals, and mastering its implementation in programming. By the end of this lesson, students should be able to:

35
Reply
Continue reading
preview
medv
•Article•12 months ago
Binomial coefficient

A combination of n elements taken k at a time is a set of k elements chosen from the given n elements. In this context, sets that differ only in the order of the elements (but not in their composition) are considered identical. It is precisely this property of combinations that distinguishes them from permutations.

36
Reply
Continue reading
preview
skolodyazhnyy
•Article•4 years ago
How Eolymp tests submissionsEolymp

Today we'll take a look at how Eolymp tests submissions: what happens after you submit a solution,how it is executed, how the results are verified and what outcomes there are. Hope this article will help you betterunderstand how the system works and make it easier to work with it.

10
Reply
Continue reading
preview
skolodyazhnyy
•Article•5 years ago
The Incomplete History of EolympEolymp

Hello everybody! My name is Sergey Kolodyazhnyy and I am one of the co-founders of the Eolymp. Today I would like to share with you the story of how my computer science teacher Zhukovsky Serhiy (@zss) and I created one of the largest Ukrainian sites for studying computer science. Of course, over the years, many caring people have helped the site. This post mentions only a few of them, but I am very grateful to everyone who contributed.

6
2 replies
Continue reading
preview
medv
•Article•15 years ago
Алгоритм Дейкстры и его реализация средствами STLSTL, Алгоритм Дейкстры, Графы

Пусть есть страна G, в которой есть множество городов (обозначим это множество как V), и множество дорог, соединяющих пары городов (обозначим их как E). Не факт, что каждая пара городов соединена дорогой. Иногда, чтобы добраться из одного города в другой, следует посетить несколько транзитных городов. У дорог есть длина. В стране G есть город-столица s. Необходимо найти кратчайшие пути из столицы до всех остальных городов.

11
Reply
Continue reading
preview
medv
•Article•15 years ago
Дерево Фенвіка

Дерево Фенвіка – це структура даних на масиві довжини n, яка дозволяє виконувати наступні операції:

16
Reply
Continue reading