From 7b5a69c25f812fab4ba2594cbf85b94f3ba86a5d Mon Sep 17 00:00:00 2001 From: "Nikolay (KrivobokovNS)" Date: Thu, 21 Aug 2025 14:09:38 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=B7=D0=B0=D0=B3=D0=BE=D0=BB=D0=BE=D0=B2=D0=BE?= =?UTF-8?q?=D1=87=D0=BD=D1=8B=D0=B9=20=D1=84=D0=B0=D0=B9=D0=BB=20=D0=BC?= =?UTF-8?q?=D0=BE=D0=B4=D1=83=D0=BB=D1=8C=D0=BD=D1=8B=D1=85=20=D1=82=D0=B5?= =?UTF-8?q?=D1=81=D1=82=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- histogram_internal.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 histogram_internal.h diff --git a/histogram_internal.h b/histogram_internal.h new file mode 100644 index 0000000..914ebbb --- /dev/null +++ b/histogram_internal.h @@ -0,0 +1,7 @@ +#ifndef HISTOGRAM_INTERNAL_H_INCLUDED +#define HISTOGRAM_INTERNAL_H_INCLUDED +#include + +void find_minmax(const std::vector& numbers, double& min, double& max); + +#endif // HISTOGRAM_INTERNAL_H_INCLUDED