From eb8fa30c2e279473e2faa3e705f5a7fef0ff0bbe Mon Sep 17 00:00:00 2001 From: KuzmenkoEA <KuzmenkoYA@mpei.ru> Date: Sun, 5 May 2024 23:35:22 +0300 Subject: [PATCH] =?UTF-8?q?build:=20=D1=80=D0=B0=D0=B7=D0=B4=D0=B5=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0?= =?UTF-8?q?=D0=BC=D0=BC=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- histogram.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/histogram.h b/histogram.h index 68e65a1..a0ec050 100644 --- a/histogram.h +++ b/histogram.h @@ -1,9 +1,9 @@ #ifndef HISTOGRAM_H_INCLUDED #define HISTOGRAM_H_INCLUDED - #include <vector> -std::vector<size_t> +std::vector<double> make_histogram(const std::vector<double>& numbers, size_t bin_count); + #endif