일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머스
- Lv. 0
- 오블완
- C언어
- group by
- SQL
- bfs
- 동적계획법
- softeer
- level 3
- javascript
- Java
- select
- 너비 우선 탐색
- programmers
- Lv. 3
- Lv. 2
- dfs
- Dynamic Programming
- SQL 고득점 KIT
- join
- DP
- Lv. 1
- 소프티어
- 자바스크립트
- 파이썬
- LEVEL 2
- Python
- 깊이 우선 탐색
- 티스토리챌린지
- Today
- Total
목록개발 언어 입문/자바스크립트 문법 (6)
몸과 마음이 건전한 SW 개발자
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/120826 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드function solution(my_string, letter) { const answer = my_string.split(letter).join('') return answer;}풀이 방법split을 사용해서 letter만 제거하고 다시 join으로 붙인다.느낀점문법을 잘 알면 활용하기 쉬워진다.
기본 조건문 let answer = 0; for (let i = 1; i < 11; i++) { if (answer) { answer += i; } else { answer = 1; }; }; console.log(answer); // 55 리펙토링 let newAnswer = 0; for (let j = 1; j < 11; j++) { newAnswer = newAnswer + j || 1; }; console.log(newAnswer); // 55 설명 기존 조건문은 if 와 else로 나눠서 answer값이 존재하면 i를 더해주고 아니면 answer는 1이된다. 총 길이는 7줄이다. 리펙토링을 한 경우 newAnswer가 존재할 경우 j를 더해주고 아니면 위와 동일하게 1이 된다. 총 길이는 3줄이..
구현 class heapq { constructor() { this.heap = []; }; size() { return this.heap.length; }; swap(left, right) { [this.heap[left], this.heap[right]] = [this.heap[right], this.heap[left]]; }; heappush(value) { this.heap.push(value); this.bubbleUp(); }; bubbleUp() { let son = this.heap.length - 1; let parent = Math.floor((son - 1) / 2); while (parent >= 0 && this.heap[son] < this.heap[parent]) { this...
문제 발견 파이썬의 경우 배열을 직접 비교하는 것이 가능하다. 자바스크립트는 직접 비교할 경우 빈 배열이라고 할지라도 false를 반환한다. 파이썬 코드 A = [1, 2, 3] B = [1, 2, 3] C = [1, 2] print(A == B, A == C) # True False 자바스크립트 코드 const lstA = [1, 2, 3] const lstB = [1, 2, 3] const lstC = [1, 2, 4] const lstD = [3, 2, 1] const lstE = [1, 2] console.log(lstA == lstA) // true console.log(lstA == lstB) // false console.log(lstA != lstB) // true // every 함수를 ..
코드 // 자바스크립트로 파이썬 리스트 컴프리헨션과 유사한 기능 만들기 // arr = [[] for _ in range(n)] const n = 5; // 원하는 길이 const arr1 = Array.from({ length: n }, () => []); const arr2 = [...Array(n)].map(() => []); const arr3 = Array(n).fill().map(() => []) // 예를 들어, 각 배열에 인덱스 번호를 push하고 싶다면 for (let i = 0; i < n; i++) { arr1[i].push(i); arr2[i].push(i); arr3[i].push(i); } console.log(arr1) console.log(arr2) console.log(ar..
sort() : 사전순 const tc1 = [1, 5, 10, 3, 11] const tc2 = ["D", "A", "b", "z", "a"] const tc3 = [2, 10, 1, "A", "b"] const tc4 = ["AB", "A", "BC", "B", "AAAAA"] console.log(tc1.sort()) // [ 1, 10, 11, 3, 5 ] console.log(tc2.sort()) // [ 'A', 'D', 'a', 'b', 'z' ] console.log(tc3.sort()) // [ 1, 10, 2, 'A', 'b' ] console.log(tc4.sort()) // [ 'A', 'AAAAA', 'AB', 'B', 'BC' ] sort((a, b) => a - b) : 오름차..