#pragma once #include #include namespace cpp26 { struct Record { std::string category; int value; }; [[nodiscard]] auto top_values_by_category(const std::vector& records, int min_value) -> std::vector; [[nodiscard]] auto total_by_category(const std::vector& records) -> std::vector>; } // namespace cpp26