We have a database of books, implemented as a list of books. A book is implemented as follows:
case class Book(title: String, authors: List[String], amountSold: Int, amountForSale: Int)
Define the function bestseller that returns the names of all authors who have amountSold / amountForSale >= 2.