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.longestValidSubstring("cbaaaabc",["aaa","cb"]), 4)6  }7 8  test("test2") {9    assertEquals(Main.longestValidSubstring("leetcode",["de","le","e"]), 4)10  }11 12}13