Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような関数シグネチャがあります。
def countChange(money: Int, coins: List[Int]): Int = {
そして、次のようなパラメーターを使用して関数を呼び出す必要があります: money = 4, coins = [1,2]
?
答えは表面にあります。
countChange(4, List(1,2))
それを侮辱するつもりはありませんが、Scala の基本的なチュートリアルを読んだほうがよいのではないでしょうか?