TheRealSamuel/LeetCodeProblem
0561
1 2import static org.junit.jupiter.api.Assertions.*;3import org.junit.jupiter.api.Test;4import java.util.List;5import java.util.Arrays;6import java.util.ArrayList;7public class Main {8 //Program start9 10 //Program end11 12 @Test13public void test1() {14 assertEquals("6 777 133339", largestGoodInteger("6 777 133339"));15}16@Test17public void test2() {18 assertEquals("23 000 19", largestGoodInteger("23 000 19"));19}20@Test21public void test3() {22 assertEquals("42352338", largestGoodInteger("42352338"));23}24 25}26 