diff options
Diffstat (limited to 'problems/partitionnumbers/attachments/template.java')
-rw-r--r-- | problems/partitionnumbers/attachments/template.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/problems/partitionnumbers/attachments/template.java b/problems/partitionnumbers/attachments/template.java new file mode 100644 index 0000000..e800dde --- /dev/null +++ b/problems/partitionnumbers/attachments/template.java @@ -0,0 +1,19 @@ +import java.util.*; +import java.io.*; +import java.math.*; + +class Solution { + + public static void main(String args[]) { + Scanner in = new Scanner(System.in); + int T = in.nextInt(); + for (int i = 0; i < T; i++) { + int n = in.nextInt(); + } + + // Write an answer using System.out.println() + // To debug: System.err.println("Debug messages..."); + + System.out.println("partitions"); + } +} |