This commit is contained in:
Михаил Капелько
2024-03-21 22:33:57 +03:00
parent a46fc88c13
commit 2ae4a8a72f
2 changed files with 75 additions and 1 deletions

View File

@@ -1,7 +1,9 @@
#include <map>
#include "Memory.h"
std::map<int, int> memory_generateConstPlayfield(int n) {
std::map<int, int> memory_generateConstPlayfield(
int n
) {
std::map<int, int> idGroups;
int id = 0;
for (int gid = 0; gid < n; ++gid) {