// // histogram.h // lab01 // // Created by Светлана Рыбакова on 01.05.2025. // #ifndef histogram_h #define histogram_h #include std::vector make_histogram(const std::vector& numbers, size_t bin_count); #endif /* histogram_h */