#include <vector> #pragma once #ifndef LAB4_HISTOGRAM_H #define LAB4_HISTOGRAM_H #endif //LAB4_HISTOGRAM_H #include <vector> #include <cstddef> std::vector<size_t> make_histogram(const std::vector<double>& numbers, size_t bin_count); bool find_minmax(const std::vector<double>& numbers, double& min, double& max);