CoolFace
Datasetpublic

TheRealSamuel/LeetCodeProblem

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes574downloads
MySuite.scala13 linesDownload Raw Back to scala_tests
1 2class MySuite extends munit.FunSuite {3  4  test("test1") {5    assertEquals(Main.longestRepeating("babacc","bcb",[1,3,3]), List(3,3,4))6  }7 8  test("test2") {9    assertEquals(Main.longestRepeating("abyzz","aa",[2,1]), List(2,3))10  }11 12}13