diff options
| author | Andrew <saintruler@gmail.com> | 2021-02-10 22:37:49 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-02-10 22:37:49 +0400 |
| commit | ba978063064e32a6e76fd6eb295876e470b30313 (patch) | |
| tree | 93be292aeca1ff5b2aedaa68b11bfbb0155fbb2e /structures/Makefile | |
| parent | 83f659d36b8c64209b72e70583cb4f0a6852e7be (diff) | |
Добавил решение 8 задачи
Diffstat (limited to 'structures/Makefile')
| -rw-r--r-- | structures/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/structures/Makefile b/structures/Makefile index 8694df6..d2d7739 100644 --- a/structures/Makefile +++ b/structures/Makefile @@ -5,5 +5,10 @@ COMPILE=$(CXX) $(CFLAGS) task5: $(COMPILE) -o task.out task5.cpp +task8: + $(COMPILE) -o task.out task8.cpp +test8: task8 + printf "10\n1 1 2 3 2 4 3 5 4 1" | ./task.out + clean: rm task.out |