매우 쉽고 제출만해도 이렇게 있어보이는 Certificate가 나온다
(총 2문제, 120분)
코테에서 rest api 호출하는 문제도 가끔 출제하니 한 번 풀어봐도 좋을 듯하다
REST API 해커링크 문제는 여기서 보면 된다
다른 건 모르겠고 영어싫어인간에게 영어지문은 언제나 달갑지 않다..
코드는 api 호출이니까 javascript로 작성했다
'use strict';
const fs = require('fs');
process.stdin.resume();
process.stdin.setEncoding('utf-8');
let inputString = '';
let currentLine = 0;
process.stdin.on('data', function(inputStdin) {
inputString += inputStdin;
});
process.stdin.on('end', function() {
inputString = inputString.split('\n');
main();
});
function readLine() {
return inputString[currentLine++];
}
/*
* Complete the 'getTotalGoals' function below.
*
* The function is expected to return an INTEGER.
* The function accepts following parameters:
* 1. STRING team
* 2. INTEGER year
*/
const axios = require('axios');
async function getTotalGoals(team, year) {
try{
var ans=0,totalPage=1,t=1;
while (t<=totalPage){
const res1 = await axios.get('https://jsonmock.hackerrank.com/api/football_matches/',{
params:{
year:year,
team1:team,
page:t
}
});
totalPage=res1.data.total_pages;
for (var item of res1.data.data){
ans=ans+parseInt(item.team1goals);
};
t+=1;
}
var totalPage=1,t=1;
while (t<=totalPage){
const res2 = await axios.get('https://jsonmock.hackerrank.com/api/football_matches/',{
params:{
year:year,
team2:team,
page:t
}
});
totalPage=res2.data.total_pages;
for (var item of res2.data.data){
ans=ans+parseInt(item.team2goals);
};
t+=1;
}
return ans;
}catch(error){
console.error(error)
}
}
async function main() {
const ws = fs.createWriteStream(process.env.OUTPUT_PATH);
const team = readLine();
const year = parseInt(readLine().trim(), 10);
const result = await getTotalGoals(team, year);
ws.write(result + '\n');
ws.end();
}
이건 1번 코드.
2번 코드는 따로 저장하지 않았지만 1번 코드에서 api 하나가 추가된 문제였고 로직은 거의 동일했던 것으로 기억한다.