diff --git a/histogram.cpp b/histogram.cpp index 5867495..52c06d3 100644 --- a/histogram.cpp +++ b/histogram.cpp @@ -3,7 +3,7 @@ #include using namespace std; -void find_minmax(const vector &numbers, double &min, double &max) +void find_minmax( vector numbers, double &min, double &max) { min = numbers[0]; max = numbers[0];