일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Django Blog
- Exercism
- MyPick31
- JavaScript
- 장고 프로젝트 순서
- Blog
- 알고리즘
- 독립영화플랫폼
- 파이썬 웹프로그래밍 장고
- 북마크만들기
- 장고 프로젝트
- 북마크앱
- 개발
- 장고 개발 순서
- 예술영화추천
- passport.js
- 타사인증
- til
- 프로젝트
- ART_Cinema
- Bookmark
- mongodb
- Django
- join()
- 자바스크립트
- 장고
- python
- Node.js
- Algorithm
- MYSQL
- Today
- Total
Juni_Dev_log
(200203_TIL) '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
배열 생성 : key, value 값을 지정해서 추가 (object[key] = value)
객체에서 value 값만 추출하기 : obejct.values()
developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Object/values
'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 |