memory.cpp: In function 'void play()':
memory.cpp:8:4: error: 'vector' was not declared in this scope
8 | vector <int> guessed;
| ^~~~~~
memory.cpp:8:4: note: suggested alternatives:
In file included from /usr/include/c++/13/vector:66,
from memory.cpp:3:
/usr/include/c++/13/bits/stl_vector.h:428:11: note: 'std::vector'
428 | class vector : protected _Vector_base<_Tp, _Alloc>
| ^~~~~~
/usr/include/c++/13/vector:86:13: note: 'std::pmr::vector'
86 | using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
| ^~~~~~
memory.cpp:8:12: error: expected primary-expression before 'int'
8 | vector <int> guessed;
| ^~~
memory.cpp:14:13: error: 'guessed' was not declared in this scope
14 | guessed.push_back(a)
| ^~~~~~~