cs-lab34/histogram.h

10 строки
180 B
C++

#ifndef HISTOGRAM_H_INCLUDED
#define HISTOGRAM_H_INCLUDED
#include <vector>
using namespace std;
vector<size_t> make_histogram(vector<double> numbers, size_t bin_count);
#endif