From 5e86c71fde97a72a3cdc4876d31b77d94ecc201b Mon Sep 17 00:00:00 2001 From: KlimenchenkoIA Date: Mon, 19 May 2025 14:27:19 +0300 Subject: [PATCH] =?UTF-8?q?=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=20histogram=5Finternal.h?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- histogram_internal.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 histogram_internal.h diff --git a/histogram_internal.h b/histogram_internal.h new file mode 100644 index 0000000..7b204e9 --- /dev/null +++ b/histogram_internal.h @@ -0,0 +1,6 @@ +#ifndef HISTOGRAM_INTERNAL_H_INCLUDED +#define HISTOGRAM_INTERNAL_H_INCLUDED + +void find_minmax(const std::vector& numbers, double& min, double& max); + +#endif