#ifndef DUMMY_LIB_HPP #define DUMMY_LIB_HPP #include #include namespace performance_measuring { int compute(const std::vector& v) { int min = *std::min_element(v.begin(), v.end()); return std::count(v.begin(), v.end(), min); } } #endif