CoolFace
Datasetpublic

TheRealSamuel/LeetCodeProblem

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes572downloads
MySuite.scala13 linesDownload Raw Back to scala_tests
1 2class MySuite extends munit.FunSuite {3  4  test("test1") {5    assertEquals(Main.maximumOr(List(12,9),1), 30)6  }7 8  test("test2") {9    assertEquals(Main.maximumOr(List(8,1,2),2), 35)10  }11 12}13 
TheRealSamuel/LeetCodeProblem · CoolFace