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
- Number Theory
- 파이썬
- simulation
- array
- Method
- Binary Search
- implement
- Tree
- Counting
- 코딩테스트
- string
- SQL
- database
- hash table
- Binary Tree
- 코테
- Math
- java
- Data Structure
- two pointers
- sorting
- dynamic programming
- Stack
- 구현
- bit manipulation
- Matrix
- Class
- greedy
- geometry
- 자바
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 두 수의 차 본문
1. Input
1) 정수 num1
2) 정수 num2
2. Output
1) num1에서 num2를 뺀 값
3. Constraint
1) -50,000 <= num1 <= 50,000
2) -50,000 <= num2 <= 50,000
4. Example
Input: num1=2, num2=3 -> Output: -1
5. Code
1) 첫 코드(2022/10/17)
return num1 - num2;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 몫 구하기 (0) | 2022.10.18 |
---|---|
[프로그래머스/Lv.0] 두 수의 곱 (0) | 2022.10.18 |
[프로그래머스/Lv.0] 두 수의 합 (0) | 2022.10.18 |
[LeetCode/Easy] 268. Missing Number (0) | 2022.10.14 |
[LeetCode/Easy] 263. Ugly Number (0) | 2022.10.14 |