분류 전체보기
-
문제 이름 : 로또의 최고 순위와 최저 순위 function solution(lottos, win_nums) { let answer = []; const correct = lottos.filter(i => win_nums.includes(i)).length; const zeros = lottos.filter(i => i === 0).length; const max = correct+zeros
[Programmers] 로또의 최고 순위와 최저 순위 문제 - (javascript)문제 이름 : 로또의 최고 순위와 최저 순위 function solution(lottos, win_nums) { let answer = []; const correct = lottos.filter(i => win_nums.includes(i)).length; const zeros = lottos.filter(i => i === 0).length; const max = correct+zeros
2021.12.29 -
문제 번호 : 2739번 문제 바로가기 ☞ https://www.acmicpc.net/problem/2739 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString(); // 입력 값이 하나일 땐 split을 사용하지 말 것 solution(Number(input)); function solution(A){ let a = A; for(let i=1;i
[BaekJoon] 2739 번 구구단 문제 - (nodejs)문제 번호 : 2739번 문제 바로가기 ☞ https://www.acmicpc.net/problem/2739 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString(); // 입력 값이 하나일 땐 split을 사용하지 말 것 solution(Number(input)); function solution(A){ let a = A; for(let i=1;i
2021.12.28 -
문제 번호 : 1330번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1330 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().split('\n'); input = input[0].split(' '); solution(input[0], input[1]); function solution(A, B){ let a = Number(A); let b = Number(B); if (a>b) console.log('>') else if (a
[BaekJoon] 1330 번 두 수 비교하기 문제 - (nods.js)문제 번호 : 1330번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1330 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().split('\n'); input = input[0].split(' '); solution(input[0], input[1]); function solution(A, B){ let a = Number(A); let b = Number(B); if (a>b) console.log('>') else if (a
2021.12.28 -
VS code 는 기본적으로 Emmet을 지원합니다. 사용방법은 작성 후 Tab을 이용합니다. 작성 방식 1. 하위 요소 div>ul>li 처럼 ' > ' 를 작성 후 Tab 2. 동급 요소 div>p+span 처럼 ' + ' 를 사용합니다. 3. 반복 div>li*3 처럼 ' * ' 을 사용합니다. 4. Class .index 처럼 ' . ' 를 맨 처음 사용합니다. * div.index로 명시적으로 사용할 수 있으나 기본이 div 형이기 때문에 생략 가능 5. weight, height, margin, percent In CSS w10 w10p h10p m10p20 w -> weight , h -> height, m -> margin, p -> percent width: 10px; width:..
[HTML&CSS] 개발 속도 높이기 - Emmet 사용법VS code 는 기본적으로 Emmet을 지원합니다. 사용방법은 작성 후 Tab을 이용합니다. 작성 방식 1. 하위 요소 div>ul>li 처럼 ' > ' 를 작성 후 Tab 2. 동급 요소 div>p+span 처럼 ' + ' 를 사용합니다. 3. 반복 div>li*3 처럼 ' * ' 을 사용합니다. 4. Class .index 처럼 ' . ' 를 맨 처음 사용합니다. * div.index로 명시적으로 사용할 수 있으나 기본이 div 형이기 때문에 생략 가능 5. weight, height, margin, percent In CSS w10 w10p h10p m10p20 w -> weight , h -> height, m -> margin, p -> percent width: 10px; width:..
2021.12.24