1
0
LearningCPP/stats.h

10 lines
235 B
C
Raw Normal View History

2022-10-21 12:46:45 +01:00
#ifndef STATS_H_INCLUDED
#define STATS_H_INCLUDED
#include <vector>
double med(std::vector<double> &scores,bool ignoreExtremes);
double avg(const std::vector<double> &scores,bool ignoreExtremes);
#endif // STATS_H_INCLUDED