From ee77595a0af829397a0572c6206292e797b0eccc Mon Sep 17 00:00:00 2001 From: LiTekho Date: Mon, 24 Apr 2023 14:29:48 +0300 Subject: [PATCH] code: updated to 5 --- histogram.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 histogram.h diff --git a/histogram.h b/histogram.h new file mode 100644 index 0000000..a857690 --- /dev/null +++ b/histogram.h @@ -0,0 +1,10 @@ +#ifndef HISTOGRAM_H_INCLUDED +#define HISTOGRAM_H_INCLUDED + +#include + +std::vector +make_histogramm(std::vector numbers, size_t bin_count); + + +#endif // HISTOGRAM_H_INCLUDED