aboutsummaryrefslogtreecommitdiff
path: root/problems/partitionnumbers/attachments/template.c
diff options
context:
space:
mode:
Diffstat (limited to 'problems/partitionnumbers/attachments/template.c')
-rw-r--r--problems/partitionnumbers/attachments/template.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/problems/partitionnumbers/attachments/template.c b/problems/partitionnumbers/attachments/template.c
new file mode 100644
index 0000000..a715c25
--- /dev/null
+++ b/problems/partitionnumbers/attachments/template.c
@@ -0,0 +1,21 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <stdbool.h>
+
+int main()
+{
+ int T;
+ scanf("%d", &T);
+ for (int i = 0; i < T; i++) {
+ int n;
+ scanf("%d", &n);
+ }
+
+ // Write an answer using printf(). DON'T FORGET THE TRAILING \n
+ // To debug: fprintf(stderr, "Debug messages...\n");
+
+ printf("partitions\n");
+
+ return 0;
+}