Problem makingparallelograms
User blob
Submission Time 2023-12-30 14:01:18
Score 0
Max Time N/A
Max Memory N/A

Compile Error

makingparallelograms.cpp:1:2: error: invalid preprocessing directive #incluude; did you mean #include?
1 | #incluude <bits/stdc++.h>
| ^~~~~~~~
| include
makingparallelograms.cpp: In function ‘int main()’:
makingparallelograms.cpp:6:5: error: ‘cin’ was not declared in this scope
6 | cin >> n;
| ^~~
makingparallelograms.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #incluude <bits/stdc++.h>
makingparallelograms.cpp:8:5: error: ‘unordered_map’ was not declared in this scope
8 | unordered_map<int, int> countMap;
| ^~~~~~~~~~~~~
makingparallelograms.cpp:1:1: note: ‘std::unordered_map’ is defined in header ‘<unordered_map>’; did you forget to ‘#include <unordered_map>’?
+++ |+#include <unordered_map>
1 | #incluude <bits/stdc++.h>