등차수열 혹은 등비수열 common이 매개변수로 주어질 때, 마지막 원소 다음으로 올 숫자를 return!
function solution(common) {
let arr=[]
for(let i=0;i<common.length-1;i++){
arr.push(common[i+1]-common[i])
}
const set=[...new Set(arr)]
if(set.length === 1){
return common[common.length-1] + (common[1] - common[0])
} else{
return common[common.length-1] * (common[1]/common[0])
}
}