#ifndef HISTOGRAM_H_INCLUDED
#define HISTOGRAM_H_INCLUDED

#include <vector>

using namespace std;

vector<size_t>
make_histogram(const vector<double>& numbers, size_t & bin_count, size_t & number_count, size_t & max_count);

void
find_minmax(const vector<double>& numbers, double& min, double& max);

#endif // HISTOGRAM_H_INCLUDED