Initial Course
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace stl_algorithms {
|
||||
|
||||
[[nodiscard]] auto reverse_copy(const std::vector<int>& data) -> std::vector<int>;
|
||||
[[nodiscard]] auto countGreaterThan(const std::vector<int>& data, int threshold) -> int;
|
||||
[[nodiscard]] auto everyEven(const std::vector<int>& data) -> bool;
|
||||
|
||||
} // namespace stl_algorithms
|
||||
Reference in New Issue
Block a user