init commit

This commit is contained in:
2025-04-13 21:48:15 +03:00
commit 23255e9121
192 changed files with 12200 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include <vector>
#include <cstdint>
void process(const std::vector<uint64_t>& from, std::vector<uint64_t>& into, int step) {
auto iterf = from.begin();
auto itert = into.rbegin();
while (iterf < from.end() && itert != into.rend()) {
*itert += *iterf;
++itert;
iterf += step;
}
return;
}