code: пункт 4.1 (объявление make_histogram())

Этот коммит содержится в:
2024-04-23 18:14:24 +03:00
родитель b2ee67e2e9
Коммит 802d988d54

Просмотреть файл

@@ -1,5 +1,9 @@
#ifndef HISTOGRAM_H_INCLUDED #ifndef HISTOGRAM_H_INCLUDED
#define HISTOGRAM_H_INCLUDED #define HISTOGRAM_H_INCLUDED
#include <vector>
std::vector<size_t>
make_histogram(const std::vector<double>& numbers, size_t bin_count);
#endif // HISTOGRAM_H_INCLUDED #endif // HISTOGRAM_H_INCLUDED