//
//  histogram.h
//  lab01
//
//  Created by Светлана Рыбакова on 01.05.2025.
//

#ifndef histogram_h
#define histogram_h

#include <vector>

std::vector<size_t>
make_histogram(const std::vector<double>& numbers, size_t bin_count);

#endif /* histogram_h */