ho_t2.cpp: In function 'int main()':
ho_t2.cpp:15:25: warning: comparison of integer expressions of different signedness: 'std::deque<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
15 | if (temp.size() > K)
| ~~~~~~~~~~~~^~~
ho_t2.cpp:17:25: warning: comparison of integer expressions of different signedness: 'std::deque<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
17 | if (temp.size() == K)
| ~~~~~~~~~~~~^~~~
ho_t2.cpp:25:25: warning: comparison of integer expressions of different signedness: 'std::deque<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
25 | if (temp.size() > K)
| ~~~~~~~~~~~~^~~
ho_t2.cpp:27:25: warning: comparison of integer expressions of different signedness: 'std::deque<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
27 | if (temp.size() == K)
| ~~~~~~~~~~~~^~~~
ho_t2.cpp:35:25: warning: comparison of integer expressions of different signedness: 'std::deque<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
35 | if (temp.size() > K)
| ~~~~~~~~~~~~^~~
ho_t2.cpp:37:25: warning: comparison of integer expressions of different signedness: 'std::deque<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
37 | if (temp.size() == K)
| ~~~~~~~~~~~~^~~~