diff --git a/histogram.h b/histogram.h new file mode 100644 index 0000000..ed53092 --- /dev/null +++ b/histogram.h @@ -0,0 +1,10 @@ +#ifndef HISTOGRAM_H_INCLUDED +#define HISTOGRAM_H_INCLUDED +#include +#include +#include + +std::vector make_histogram(const std::vector& numbers, size_t& bin_count); +void show_histogram_text(const std::vector bins, size_t bin_count); + +#endif // HISTOGRAM_H_INCLUDED