Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
s50600822 committed Oct 29, 2023
1 parent b717a1e commit b5c5e10
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package hoa.can.code.ez;

import java.util.Arrays;

import util.Array;

public class PartitionEqualSubSetSum {
Expand All @@ -12,7 +10,6 @@ public static int equalPartition(int n, int arr[]){
}

static int canAddUp(int arr[], int target){
System.out.println(String.format("canAddUp %d %s", target, Arrays.toString(arr)));
if(target==0){
return 1;
}
Expand Down

0 comments on commit b5c5e10

Please sign in to comment.