Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 일반 형제 선택자 결합
- 쌍방향 연결리스트
- visibility : hidden
- indexOf
- 객체
- display : none
- 배열의 내림차순
- invalid assignment left-hand side
- map()
- innerhtml
- Link
- 단방향 연결리스트
- 배열의 오름차순
- 인접 형제 선택자 결합
- Array.from()
- for..of
- 등차수열의 항 찾기
- disabled
- CSS
- Sort
- 배열과 연결리스트의 차이
- Em
- 가상 요소 선택자
- filter()
- nth-child()
- 양방향 연결리스트
- classList.contains(string)
- 고차함수
- 범용 선택자
- 백준알고리즘
Archives
- Today
- Total
프론트엔드 센트럴파크 (☞゚ヮ゚)☞
백준알고리즘_1001 본문


const fs = require("fs");
const input = fs.readFileSync("/dev/stdin").toString().split(" ");
const A = parseInt(input[0]);
const B = parseInt(input[1]);
console.log(A - B);
split(" ");
꼭 중간에 띄어쓰기 되어있는지 확인하세요... ㅎ....
'Algorism' 카테고리의 다른 글
이중for문의 break (0) | 2022.05.05 |
---|---|
break와 continue의 차이점 (0) | 2022.05.05 |
백준알고리즘_10718 (0) | 2022.04.12 |
백준알고리즘_2557 (0) | 2022.04.12 |
백준알고리즘_2693 (0) | 2022.02.17 |