목록자바 순서쌍의개수 (1)
Yeonee's Story
[프로그래머스/Java] 코딩테스트 Lv.0 순서쌍의 개수
안녕하세요. https://blog.naver.com/sysysy0302 여니입니다 :) 🪅 나의 문제 풀이 class Solution { public int solution(int n) { int answer = 0; for(int i = 1; i < n; i++){ if(n%i == 0){ answer++; } } return answer; } } [테스트 통과] class Solution { public int solution(int n) { int answer = 0; for(int i = 1; i
。*:・゚☆・゚schedule・゚*:・゚★・:*:・☆ *:・゚★/나의 코딩테스트
2023. 10. 16. 01:13