cs-lab03/LR3/histogram.h

12 строки
192 B
C++

#ifndef HISTOGRAM_H_INCLUDED
#define HISTOGRAM_H_INCLUDED
#include <vector>
std::vector<size_t>
make_histogram(std::vector<double> numbers, int bin_count);
#endif // HISTOGRAM_H_INCLUDED