cs-lab34/lab01/histogram.h

7 строки
142 B
C++

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