Concept Flow - Lambda with sorted()
Start with list
Call sorted()
Use lambda as key
Apply lambda to each item
Compare results
Return sorted list
The sorted() function takes a list and a lambda function as a key to decide the order, then returns a new sorted list.