#ifndef HISTOGRAM_H_INCLUDED #define HISTOGRAM_H_INCLUDED #include using namespace std; vector make_histogram(vector numbers, size_t bin_count); double calculate_average_height(const vector& bins); #endif