Initial Course
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <ranges>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace cpp20 {
|
||||
|
||||
[[nodiscard]] auto even_numbers(const std::vector<int>& input) -> std::vector<int>;
|
||||
[[nodiscard]] auto take_first_three(const std::vector<int>& input) -> std::vector<int>;
|
||||
[[nodiscard]] auto join_strings(const std::vector<std::string>& parts) -> std::string;
|
||||
|
||||
} // namespace cpp20
|
||||
Reference in New Issue
Block a user