프로그래머스 - LV1. x만큼 간격이 있는 n개의 숫자

김소정·2022년 2월 6일
0

프로그래머스

목록 보기
2/35

❔ 문제

❗ 내 풀이

class Solution {
    public long[] solution(int x, int n) {
        long[] answer = new long[n];
        
        for(int i = 0; i < n; i++){
            answer[i] =  (long)x * (i+1);		// 나는 여기서 long형으로 변환했다.
        }
        
        return answer;
    }
}

🚩참고 (다른 풀이)


1.
class Solution {
  public long[] solution(int x, int n) {		
      long[] answer = new long[n];
      long sum = 0;
      for(int i = 0;i<answer.length;i++){		
          sum += x;							// 곱하기 말고 그냥 더해도 된다.
          answer[i] = sum;
      }


      return answer;
  }
}


2.
class Solution {
  public long[] solution(long x, int n) {		// 처음부터 long형으로 변환할 수 있다.
      long[] answer = new long[n];
      for(int i = 0; i < n; i++){
          answer[i] = x * (i + 1);
      }
      return answer;
  }
}

📝 정리

💬 처음부터 매개변수 타입 자체를 long형으로 변환하고 시작할 수 있다.


profile
개발자 가보자고

0개의 댓글

관련 채용 정보