advent-of-code/2022/cpp/03/lib.hpp

36 lines
665 B
C++
Raw Normal View History

2023-08-02 11:50:10 +02:00
#include <ostream>
#include <unordered_set>
#include <vector>
template<class T>
std::ostream &operator<<(std::ostream &os, const std::unordered_set<T> &list) {
unsigned long i = 0;
os << "[";
for (auto el : list) {
os << el;
if (i < list.size() - 1) {
os << ", ";
}
i++;
}
os << "]";
return os;
}
template<class T>
std::ostream &operator<<(std::ostream &os, const std::vector<T> &list) {
unsigned long i = 0;
os << "[";
for (auto el : list) {
os << el;
if (i < list.size() - 1) {
os << ", ";
}
i++;
}
os << "]";
return os;
}