CoolFace
Datasetpublic

FPEvalDataset/LeetCodeProblem

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