Skip to content

Instantly share code, notes, and snippets.

View tarasxryak's full-sized avatar
🥝
hw updated

Ivakin Alexander tarasxryak

🥝
hw updated
  • Itmo uni
  • Saint-Petersburg, Russia
View GitHub Profile
@tarasxryak
tarasxryak / countingSort.cpp
Last active October 31, 2025 12:26
Алгоритмы для коллоквиума
#include <iostream>
void cs(int arr[], int len) {
//find the max element
int max = INT_MIN;
for (int i = 0; i < len; ++i) {
max = std::max(max, arr[i]);
}