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