fix comments

This commit is contained in:
2025-10-28 14:57:10 +03:00
parent c2c8a5fd0c
commit 3d7acb1d63
2 changed files with 8 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
#include <vector>
// находит все простые числа от 0 до n
// Решето Эратосфена
namespace alg
{
inline std::vector<int> find_primes(int n)

View File

@@ -0,0 +1,7 @@
#pragma once
namespace alg::search
{
}