From 968cd5f98424bbe8cd308bdf9c7f7ac27e009442 Mon Sep 17 00:00:00 2001 From: "Varvara (ZeninaVA)" Date: Sat, 3 May 2025 14:03:00 +0300 Subject: [PATCH] code: histogram_internal.h --- 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..4567891 --- /dev/null +++ b/histogram_internal.h @@ -0,0 +1,6 @@ +#ifndef HISTOGRAM_INTERNAL_H_INCLUDED +#define HISTOGRAM_INTERNAL_H_INCLUDED + +void find_minmax(std::vector vec, double& min, double& max); + +#endif // HISTOGRAM_INTERNAL_H_INCLUDED