From 21e87301dba48a84e4c0664ad331f8942463cbc0 Mon Sep 17 00:00:00 2001 From: ShinkarenkoVA Date: Wed, 8 May 2024 15:55:18 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=BB=D0=B8=20=D1=82=D0=B8=D0=BF=20=D1=84=D1=83=D0=BD=D0=BA?= =?UTF-8?q?=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- histogram_internal.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 histogram_internal.h diff --git a/histogram_internal.h b/histogram_internal.h new file mode 100644 index 0000000..97b7abf --- /dev/null +++ b/histogram_internal.h @@ -0,0 +1,8 @@ +#ifndef HISTOGRAM_INTERNAL_H_INCLUDED +#define HISTOGRAM_INTERNAL_H_INCLUDED + +#include +bool +find_minmax(const std::vector& numbers, double& min, double& max); + +#endif // HISTOGRAM_INTERNAL_H_INCLUDED