diff options
| author | Andrew <saintruler@gmail.com> | 2021-02-10 23:15:28 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-02-10 23:15:28 +0400 |
| commit | a7a0646a34a1430568ec5cb22534f24c886d127b (patch) | |
| tree | 081059067e69c73960f1b92e76680f7a24d4b047 /structures/Makefile | |
| parent | 8090e4beb10133f5df865a219a87140b50324fda (diff) | |
Добавил решение 18 задачи
Diffstat (limited to 'structures/Makefile')
| -rw-r--r-- | structures/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/structures/Makefile b/structures/Makefile index 7dacd52..7dcb9d1 100644 --- a/structures/Makefile +++ b/structures/Makefile @@ -15,5 +15,11 @@ task14: test14: task14 printf "10\na 2 - e * ^ f + & 0 )" | ./task.out +task18: + $(COMPILE) -o task.out task18.cpp +test18: task18 + printf "8\n1 1 2 2 3 4 5 5" | ./task.out + printf "11\n1 1 1 2 2 1 1 3 4 5 5" | ./task.out + clean: rm task.out |