Problem | brick |
---|---|
User | ZachTAD |
Submission Time | 2024-03-04 14:59:04 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
brick.cpp: In function ‘int main()’:
brick.cpp:8:2: error: ‘deque’ was not declared in this scope
8 | deque<long long> b;
| ^~~~~
brick.cpp:2:1: note: ‘std::deque’ is defined in header ‘<deque>’; did you forget to ‘#include <deque>’?
1 | #include <iostream>
+++ |+#include <deque>
2 | using namespace std;
brick.cpp:8:8: error: expected primary-expression before ‘long’
8 | deque<long long> b;
| ^~~~
brick.cpp:12:10: error: ‘b’ was not declared in this scope
12 | while (b.size() < 1) {
| ^