diff options
| author | Syndamia <kamen@syndamia.com> | 2024-04-22 15:43:49 +0300 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2024-04-22 15:43:49 +0300 |
| commit | f3406754705e508f57768d3d0d8e457ff5b7620c (patch) | |
| tree | 9f8743208732c21d5dcb51302feb29058edd8e58 /week08/Exercise3.hpp | |
| parent | f7ed9a8a6c31b17d54d2f37cc0f12b64f8e4b6d2 (diff) | |
| download | oop-2023-solutions-f3406754705e508f57768d3d0d8e457ff5b7620c.tar oop-2023-solutions-f3406754705e508f57768d3d0d8e457ff5b7620c.tar.gz oop-2023-solutions-f3406754705e508f57768d3d0d8e457ff5b7620c.zip | |
[w8] Added exercise descriptions and solutions to ex 1-7
Diffstat (limited to 'week08/Exercise3.hpp')
| -rw-r--r-- | week08/Exercise3.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/week08/Exercise3.hpp b/week08/Exercise3.hpp new file mode 100644 index 0000000..9b15db2 --- /dev/null +++ b/week08/Exercise3.hpp @@ -0,0 +1,5 @@ +template <class T, class P> +struct Pair { + T left; + P right; +}; |
