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
- Counting
- hash table
- array
- Number Theory
- Math
- 구현
- 파이썬
- dynamic programming
- string
- greedy
- Method
- Class
- 코딩테스트
- 자바
- geometry
- Matrix
- database
- simulation
- Binary Search
- two pointers
- Tree
- bit manipulation
- 코테
- java
- Stack
- implement
- sorting
- SQL
- Binary Tree
- Data Structure
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] n의 배수 본문
1. Input
1) int num
2) int n
2. Output
1) num이 n의 배수이면 1, 아니면 0을 반환
3. Constraint
1) 2 ≤ num ≤ 100
2) 2 ≤ n ≤ 9
4. Example
Input: num=98, n=2 -> Output: 1
5. Code
1) 첫 코드(2023/04/22)
return num%n==0 ? 1 : 0;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 공배수 (0) | 2023.04.22 |
---|---|
[프로그래머스/Lv.0] 문자열을 정수로 변환하기 (0) | 2023.04.22 |
[프로그래머스/Lv.0] 정수 부분 (0) | 2023.04.22 |
[LeetCode/Easy] 1854. Maximum Population Year (0) | 2023.04.21 |
[LeetCode/Easy] 1800. Maximum Ascending Subarray Sum (0) | 2023.04.21 |