aboutsummaryrefslogtreecommitdiff
path: root/challenge-262/deadmarshal/cpp/ch-1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-262/deadmarshal/cpp/ch-1.cpp')
-rw-r--r--challenge-262/deadmarshal/cpp/ch-1.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/challenge-262/deadmarshal/cpp/ch-1.cpp b/challenge-262/deadmarshal/cpp/ch-1.cpp
new file mode 100644
index 0000000000..391ea1f286
--- /dev/null
+++ b/challenge-262/deadmarshal/cpp/ch-1.cpp
@@ -0,0 +1,21 @@
+#include<iostream>
+#include<vector>
+
+template<typename T>
+std::size_t max_positive_negative(const std::vector<T> &vec)
+{
+ std::size_t neg{},pos{};
+ for(const T& e : vec) if(e < 0) neg++; else pos++;
+ return static_cast<size_t>(std::max(neg,pos));
+}
+
+int main()
+{
+ std::vector<int> vec1{-3,1,2,-1,3,-2,4},
+ vec2{-1,-2,-3,1},vec3{1,2};
+ std::cout << max_positive_negative<int>(vec1) << '\n'
+ << max_positive_negative<int>(vec2) << '\n'
+ << max_positive_negative<int>(vec3) << '\n';
+ return 0;
+}
+