From 959c579550dd46cdb3358a5456ec39a9f4631260 Mon Sep 17 00:00:00 2001 From: Mehrdad Shirvani Date: Sat, 18 Apr 2026 19:30:23 +0330 Subject: [PATCH 1/2] fix: remove redundant comment --- src/main/java/MainExercises.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/MainExercises.java b/src/main/java/MainExercises.java index 21581ea..e168549 100644 --- a/src/main/java/MainExercises.java +++ b/src/main/java/MainExercises.java @@ -85,9 +85,6 @@ public class MainExercises Hint: You can determine the size and order of the arrays by finding the pattern of partitions and their count. Trust me, this one's fun and easy :) - - If you're familiar with Lists and ArrayLists, you can also edit the method's - body to use them instead of arrays. */ public int[][] intPartitions(int n) { From e73ac6115fd6a098a42e9c68a875281c7b5f58ca Mon Sep 17 00:00:00 2001 From: Mehrdad Shirvani Date: Sat, 18 Apr 2026 19:38:33 +0330 Subject: [PATCH 2/2] Revert "fix: remove redundant comment" This reverts commit 959c579550dd46cdb3358a5456ec39a9f4631260. --- src/main/java/MainExercises.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/MainExercises.java b/src/main/java/MainExercises.java index e168549..21581ea 100644 --- a/src/main/java/MainExercises.java +++ b/src/main/java/MainExercises.java @@ -85,6 +85,9 @@ public class MainExercises Hint: You can determine the size and order of the arrays by finding the pattern of partitions and their count. Trust me, this one's fun and easy :) + + If you're familiar with Lists and ArrayLists, you can also edit the method's + body to use them instead of arrays. */ public int[][] intPartitions(int n) {