cs-lab34/histogram.h

4 строки
121 B
C++

#pragma once
#include <vector>
std::vector<size_t> make_histogram(const std::vector<double>& numbers, size_t bin_count);