Initial Course
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include <queue>
|
||||
#include <stack>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace stl_containers {
|
||||
|
||||
[[nodiscard]] auto is_balanced_parentheses(const std::string& text) -> bool;
|
||||
[[nodiscard]] auto simulate_queue(const std::vector<int>& arrivals) -> std::vector<int>;
|
||||
[[nodiscard]] auto top_k_largest(const std::vector<int>& data, int k) -> std::vector<int>;
|
||||
|
||||
} // namespace stl_containers
|
||||
Reference in New Issue
Block a user