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
- Tree
- Matrix
- Number Theory
- 코테
- geometry
- string
- 코딩테스트
- java
- two pointers
- Binary Tree
- array
- Math
- database
- simulation
- implement
- 자바
- Counting
- hash table
- 구현
- dynamic programming
- bit manipulation
- Class
- Binary Search
- Method
- 파이썬
- sorting
- greedy
- Data Structure
- SQL
- Stack
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 나머지 구하기 본문
1. Input
1) 정수 num1
2) 정수 num2
2. Output
1) num1을 num2로 나눴을때의 나머지
3. Constraint
1) 0 <= num1 <= 100
2) 0 <= num2 <= 100
4. Example
Input: num1=10, 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 |
[프로그래머스/Lv.0] 분수의 덧셈 (0) | 2022.10.18 |
[프로그래머스/Lv.0] 숫자 비교하기 (0) | 2022.10.18 |