CoolFace
Datasetpublic

TheRealSamuel/LeetCodeProblem

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes572downloads
MySuite.scala17 linesDownload Raw Back to scala_tests
1 2class MySuite extends munit.FunSuite {3  4  test("test1") {5    assertEquals(Main.destroyTargets(List(3,7,8,1,1,5),2), 1)6  }7 8  test("test2") {9    assertEquals(Main.destroyTargets(List(1,3,5,2,4,6),2), 1)10  }11 12  test("test3") {13    assertEquals(Main.destroyTargets(List(6,2,5),100), 2)14  }15 16}17