From the course: Level Up: Go

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

The silent auction

The silent auction - Go Tutorial

From the course: Level Up: Go

The silent auction

- [Narrator] This challenge titled The Silent Auction is our most complex concurrency challenge. We'll be simulating a silent auction. The auctioneer will have a list of items. They will gather bids and proclaim the items sold to the highest bidder. The bidders will have a set budget and will manage their own funds. Given a list of resources, implement a function that simulates the concurrent management and allocation of bids for these resources. We will have a predefined list of items and bidders. We will make some simplifications to our auction to make it more manageable. First, all bidders start with equal wallet amounts and will only bid integer amounts. Then we can assume that all bidders will bid for all items. If they are out of money, they will place bids of zero. Finally, items will not have minimum prices and will be sold sequentially. There are no new tips for this challenge. You are already familiar with all…

Contents