#ifndef HISTOGRAM_H_INCLUDED #define HISTOGRAM_H_INCLUDED #include using namespace std; vector make_histogram(const std::vector& numbers, size_t bin_count); void find_minmax(const vector &numbers, double &min, double &max, bool &res); #endif // HISTOGRAM_H_INCLUDED