-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathmain.bal
28 lines (24 loc) · 952 Bytes
/
main.bal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import ballerina_exercism/http_billion_dollar_question.billionarehub_server as _;
import ballerina_exercism/http_billion_dollar_question.billionarehub_client as billionarehubClient;
type Billionaire record {
string name;
float netWorth;
};
public function getTopXBillionaires(string[] countries, int x) returns string[]|error {
Billionaire[] billionaires = [];
foreach string country in countries {
billionaires.push(...check getTopXBillionairesByCountry(country, x));
}
return from var b in billionaires
order by b.netWorth descending
limit x
select b.name;
}
function getTopXBillionairesByCountry(string country, int x) returns Billionaire[]|error {
billionarehubClient:BillionareClient cl = check new();
Billionaire[] billionaires = check cl->getBillionaires(country);
return from var b in billionaires
order by b.netWorth descending
limit x
select b;
}