Muscardinus

[프로그래머스] x만큼 간격이 있는 n개의 숫자(Lv1) 본문

알고리즘 문제/[프로그래머스] Lv1

[프로그래머스] x만큼 간격이 있는 n개의 숫자(Lv1)

Muscardinus 2020. 6. 11. 15:17
728x90

https://programmers.co.kr/learn/courses/30/lessons/12954?language=cpp

문제 설명

함수 solution은 정수 x와 자연수 n을 입력 받아, x부터 시작해 x씩 증가하는 숫자를 n개 지니는 리스트를 리턴해야 합니다. 다음 제한 조건을 보고, 조건을 만족하는 함수, solution을 완성해주세요.

제한 조건

  • x는 -10000000 이상, 10000000 이하인 정수입니다.
  • n은 1000 이하인 자연수입니다.

입출력 예

x n answer
2 5 [2,4,6,8,10]
4 3 [4,8,12]
-4 2 [-4, -8]

 

JavaScript

function solution(x, n) {
    var answer = [];
    for(var i=1;i<=n;i++){
        answer.push(x*i);
    }
    return answer;
}
function solution(x, n) {
    var answer = [];
    answer=Array(n).fill(x).map((c,i)=>{
        return (i+1)*c;
    })
    return answer;
}

Map 함수는

Map(currentValue,index,Array)

https://aljjabaegi.tistory.com/315

fill 함수

https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/fill

C++

#include <string>
#include <vector>

using namespace std;

vector<long long> solution(int x, int n) {
    vector<long long> answer;
    for(int i=1;i<=n;i++){
        answer.push_back(x*i);
    }
    return answer;
}

 

728x90
Comments