From 1133512a50f573515bf6cc54e18b2cf66fea8df7 Mon Sep 17 00:00:00 2001 From: "Alice (IvanovII)" Date: Mon, 29 May 2023 14:35:41 +0300 Subject: [PATCH] histogram.h --- histogram.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 histogram.h diff --git a/histogram.h b/histogram.h new file mode 100644 index 0000000..b1cab65 --- /dev/null +++ b/histogram.h @@ -0,0 +1,10 @@ +#ifndef HISTOGRAM_H_INCLUDED +#define HISTOGRAM_H_INCLUDED +#include + +std::vector +make_histogram(const std::vector numbers, size_t bin_count); + +#endif // HISTOGRAM_H_INCLUDED + +