Problem 23

This commit is contained in:
2026-03-19 15:39:45 +01:00
parent 96ab3811fa
commit 5935fcca99
2 changed files with 20 additions and 0 deletions
@@ -0,0 +1,7 @@
package ninetyNineScalaProblems
import scala.util.Random
object Problem23:
def randomSelect(n: Int, list: List[Any]): List[Any] =
Problem18.slice(0, n, Random.shuffle(list))