Juni_Dev_log

(200203_TIL) 'ETL' 본문

CodingTest/Exercism

(200203_TIL) 'ETL'

Juni_K 2021. 2. 3. 12:04

▶ ETL

ETL

(Problem)

Introduction

We are going to do the Transform step of an Extract-Transform-Load.

ETL

Extract-Transform-Load (ETL) is a fancy way of saying, "We have some crufty, legacy data over in this system, and now we need it in this shiny new system over here, so we're going to migrate this."

(Typically, this is followed by, "We're only going to need to run this once." That's then typically followed by much forehead slapping and moaning about how stupid we could possibly be.)

The goal

We're going to extract some Scrabble scores from a legacy system.

The old system stored a list of letters per score:

  • 1 point: "A", "E", "I", "O", "U", "L", "N", "R", "S", "T",
  • 2 points: "D", "G",
  • 3 points: "B", "C", "M", "P",
  • 4 points: "F", "H", "V", "W", "Y",
  • 5 points: "K",
  • 8 points: "J", "X",
  • 10 points: "Q", "Z",

The shiny new Scrabble system instead stores the score per letter, which makes it much faster and easier to calculate the score for a word. It also stores the letters in lower-case regardless of the case of the input letters:

  • "a" is worth 1 point.
  • "b" is worth 3 points.
  • "c" is worth 3 points.
  • "d" is worth 2 points.
  • Etc.

Your mission, should you choose to accept it, is to transform the legacy data format to the shiny new format.

Notes

A final note about scoring, Scrabble is played around the world in a variety of languages, each with its own unique scoring table. For example, an "E" is scored at 2 in the Māori-language version of the game while being scored at 4 in the Hawaiian-language

 

(Tip)

- 옛날 데이터들은, { 1: ['A'] } { 1: ['A', 'E'], 2: ['D', 'G'] } 같은 형식으로 객체 형식과 key value 쌍으로 이루어져있다. value 는 배열형태로 작성되었다.

- for문을 이중 중첩으로 작성해서 진행한다.

- 결과값으로 { a: 1 } { a: 1, e: 1, d: 2, g: 2, } 의 형태로 나와야하기 때문에, 구 데이터의 key는 신 데이터의 value 가 되고, 구 데이터의 value 배열은 for문을 돌려서 신 데이터의 value 값으로 소문자로 전환해서 들어가야한다.

 

 

(Solution)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
export const transform = (object) => {
    // 빈 객체를 생성
    let transformed = {};
    // 주어진 객체를 key 값의 개수만큼 반복문 돌리기
    for(let key in object){
        // key에 해당하는 value 변수선언
        let value = object[key];
        // item 변수 선언
        let item;
        // item 변수에 value 배열을 담고 요소를 순서대로 뽑아내서 담음.
        for(let j=0; item = value[j]; j++){
            transformed[item.toLowerCase()] = parseInt(key);
        }
    }
    return transformed;
};
 
cs

- 빈 객체인 transformed 를 생성한다.

- 파라미터를 통해서 전달되는 object 객체를 key 값에 갯수에 맞춰서 for문을 진행한다.

- 거기서 나온 object[key] 값을 통해서 value 배열을 변수에 담고, value 배열을 for문으로 또 돌린다.

- value의 배열 요소들을 담을 item 변수를 선언한다.

- 이중 중첩 for문을 돌리면서, transformed 객체에 key 값으로는, item.toLowerCase() 를 넣고 value 값으로는 key를 숫자화하여 추가한다.

 

(📚 참고)

배열 전용 for문 : for..in

developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...in

 

for...in - JavaScript | MDN

The for...in statement iterates over all enumerable properties of an object that are keyed by strings (ignoring ones keyed by Symbols), including inherited enumerable properties. The source for this interactive example is stored in a GitHub repository. If

developer.mozilla.org

배열 생성 : key, value 값을 지정해서 추가 (object[key] = value)

junspapa-itdev.tistory.com/22

 

[Javascript] 객체(Object) 생성, 프로퍼티(key, value) 접근하는 다양한 방법

먼저, 객체를 생성하는 방법은 아래와 같이 여러가지 방법이 있습니다. 객체 생성하는 다양한 방법 //객체 리터럴을 이용해서 객체 생성과 동시에 프로퍼티 설정 var person = { name : '홍길동', age : 2

junspapa-itdev.tistory.com

객체에서 value 값만 추출하기 : obejct.values()

developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Object/values

 

Object.values() - JavaScript | MDN

Object.values() 메소드는 전달된 파라미터 객체가 가지는 (열거 가능한) 속성의 값들로 이루어진 배열을 리턴합니다. 이 배열은 for...in 구문과 동일한 순서를 가집니다. (for in 반복문은 프로토타

developer.mozilla.org

 

'CodingTest > Exercism' 카테고리의 다른 글

(200205_TIL) 'Raindrops'  (0) 2021.02.05
(200204_TIL) 'Hamming'  (0) 2021.02.04
(200202_TIL) 'Triangle'  (0) 2021.02.02
(200201_TIL) 'Collatz Conjecture'  (0) 2021.02.01
(200201_TIL) 'Reverse String'  (0) 2021.02.01
Comments