Cruz Castillo

Generation

generate functionFri, 05 May 2023

Bot program to count the products bought in the supermarket, with total sum.

def calculate(products: List[String]): (Int, Double) = { val prices = Map( "Apple" -> 0.60, "Orange" -> 0.25 ) val totalPrice = products.foldLeft(0.0)((total, product) => total + prices(product)) (products.length, totalPrice) }

Want to kickstart your project?Use the new AI Studio to create your code