글
프로그래머스 C# 다음에 올 숫자(등차 등비 수열, JAVA)
프로그래밍
2023. 1. 20. 01:29
728x90
SMALL
using System;
public class Solution {
public int solution(int[] common) {
int answer = 0;
if(common[1]-common[0] == common[2]-common[1])
{
answer = common[common.Length-1]+common[1]-common[0];
}
else
{
answer = common[common.Length-1]*(common[1]/common[0]+common[1]%common[0]);
}
return answer;
}
}
/////
자바
class Solution {
public int solution(int[] common) {
int answer = 0;
int x = common[1] - common[0];
int y = common[2] - common[1];
if (x == y)
{
answer = common[common.length - 1] + y;
}
else
{
answer = common[common.length - 1] * common[2] / common[1];
}
return answer;
}
}
class Solution {
public int solution(int[] common) {
int answer = 0;
if(common[1] - common[0] == common[2] - common[1])
{
answer = common[common.length-1] + (common[1] - common[0]);
}
else
answer = common[common.length-1] * (common[1]/common[0]);
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 옹알이(1) (문자열 Replace의 활용, JAVA) (0) | 2023.01.20 |
---|---|
프로그래머스 C# 등수 매기기(Linq, GetLength, Array.Fill(), JAVA) (0) | 2023.01.20 |
프로그래머스 C# 저주의 숫자 3(JAVA) (0) | 2023.01.20 |
프로그래머스 C# 유한소수와 무한소수(2,5, JAVA) (0) | 2023.01.19 |
프로그래머스 C# 치킨 쿠폰(JAVA) (0) | 2023.01.19 |