Skip to content
Snippets Groups Projects
Commit 12edd433 authored by elenziat's avatar elenziat
Browse files

cosmetic edits (include standard headers using <>)

parent 3d477d33
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@
#ifndef UEBUNG5_OUTLIERS_H
#define UEBUNG5_OUTLIERS_H
#include <cstddef>
#include <vector>
#include "cstddef"
double findNMin(const std::vector<double>& data, size_t n);
double findNMax(const std::vector<double>& data, size_t n);
......
#include "statistics.h"
#include "cstddef"
#include <algorithm>
#include <numeric>
size_t countValuesNearMean(const std::vector<double>& data) {
return 0;
}
size_t countValuesNearMean(const std::vector<double>& data) { return 0; }
#ifndef STATISTICS_H
#define STATISTICS_H
#include <cstddef>
#include <vector>
#include "cstddef"
size_t countValuesNearMean(const std::vector<double>& data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment