Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
kornerr
/
research-portable-memory
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
d
main
Михаил Капелько
9 mesi fa
parent
e3b5ddea44
commit
e6e7561137
2 ha cambiato i file
con
0 aggiunte
e
22 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-17
Memory.Test.cpp
+0
-5
Memory.h
+ 0
- 17
Memory.Test.cpp
Vedi File
@@ -1,17 +0,0 @@
#include <string>
#include "Memory.h"
std::string test_memory_generateConstPlayfield() {
std::map<int, int> idGroups = memory_generateConstPlayfield(2);
if (
idGroups.size() == 4 &&
idGroups[0] == 0 &&
idGroups[1] == 0 &&
idGroups[2] == 1 &&
idGroups[3] == 1
) {
return "OK: memory_generateConstPlayfield";
}
return "ERR: memory_generateConstPlayfield";
}
+ 0
- 5
Memory.h
Vedi File
@@ -1,5 +0,0 @@
#include <map>
#include <string>
std::map<int, int> memory_generateConstPlayfield(int n);
std::string test_memory_generateConstPlayfield();
Write
Preview
Loading…
Annulla
Salva