From 2c9056a23e1a55fd21a8e314c903d9325bffd62e Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Sat, 6 Sep 2025 09:37:14 +0200 Subject: Move CPP code here Signed-off-by: Carlos Maiolino --- CPP/cpp_book/chap5/median.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CPP/cpp_book/chap5/median.h (limited to 'CPP/cpp_book/chap5/median.h') diff --git a/CPP/cpp_book/chap5/median.h b/CPP/cpp_book/chap5/median.h new file mode 100644 index 0000000..f4e6580 --- /dev/null +++ b/CPP/cpp_book/chap5/median.h @@ -0,0 +1,8 @@ +#ifndef MEDIAN_H +#define MEDIAN_H + +#include + +double median(std::vector vec); + +#endif /* MEDIAN_H */ -- cgit v1.2.3