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 | 31 |
Tags
- LifeCycle
- TIL
- bean
- Deep Dive
- REST API
- 인접리스트
- 인접행렬
- html
- Spring
- Linux
- java
- OOP
- JWT
- dfs
- 프로그래머스
- 자료구조
- MySQL
- GraphQL
- nestjs
- css
- winston
- Interceptor
- Kubernetes
- typescript
- javascript
- node.js
- 탐욕법
- 알고리즘
- 코딩테스트
- puppeteer
Archives
- Today
- Total
처음부터 차근차근
[프로그래머스] Lv1 나머지가 1이 되는 수 찾기 본문
728x90
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/87389
문제 설명
내 풀이
function solution(n) {
let i = 2;
while(n % i !== 1) {
i++
}
return i
}
2부터 나누고, while 반복문을 돌려 나머지가 1이 나올때까지 찾는다.
다른 사람의 풀이
function solution(n, x = 1) {
while (x++) {
if (n % x === 1) {
return x;
}
}
}
오늘 배운 점
저렇게 함수의 매개변수 값으로 받을 수 있는것도 배웠다.
Lv1이지만 너무 쉬워서 Pass
'코딩테스트 > Javascript' 카테고리의 다른 글
[프로그래머스] Lv2 올바른 괄호 (0) | 2023.10.31 |
---|---|
[프로그래머스] Lv1 예산 (0) | 2023.10.31 |
[프로그래머스] Lv0 캐릭터의 좌표 (0) | 2023.10.31 |
[프로그래머스] Lv0 7의 개수 (0) | 2023.10.31 |
[프로그래머스] LV2 JadenCase 문자열 만들기 (0) | 2023.10.31 |