Initial Course
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#include "ranges.hpp"
|
||||
|
||||
namespace cpp20 {
|
||||
|
||||
auto even_numbers(const std::vector<int>& input) -> std::vector<int> {
|
||||
(void)input;
|
||||
return {};
|
||||
}
|
||||
|
||||
auto take_first_three(const std::vector<int>& input) -> std::vector<int> {
|
||||
(void)input;
|
||||
return {};
|
||||
}
|
||||
|
||||
auto join_strings(const std::vector<std::string>& parts) -> std::string {
|
||||
(void)parts;
|
||||
return {};
|
||||
}
|
||||
|
||||
} // namespace cpp20
|
||||
Reference in New Issue
Block a user