Problem | splithunny |
---|---|
User | DoubleShaurya |
Submission Time | 2024-01-20 11:21:12 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
splithunny.cpp: In function ‘int countHoneyPools(const std::vector<std::vector<char> >&)’:
splithunny.cpp:41:17: error: ‘queue’ was not declared in this scope
41 | queue<Coord> toVisit;
| ^~~~~
splithunny.cpp:5:1: note: ‘std::queue’ is defined in header ‘<queue>’; did you forget to ‘#include <queue>’?
4 | #include <algorithm>
+++ |+#include <queue>
5 |
splithunny.cpp:41:28: error: expected primary-expression before ‘>’ token
41 | queue<Coord> toVisit;
| ^
splithunny.cpp:41:30: error: ‘toVisit’ was not declared in this scope
41 | queue<Coord> toVisit;
| ^~~~~~~