Again, there are multiple ways to get to this solution using only joins, but the focus here is on showing you an introduction into advanced subqueries.
Select the maximum inflation rate in 2015 AS max_inf
grouped by continent using the previous step's query as a subquery in the FROM
clause.