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
- Kubernetes
- MySQL
- REST API
- bean
- 코딩테스트
- nestjs
- GraphQL
- LifeCycle
- Deep Dive
- java
- winston
- puppeteer
- node.js
- 프로그래머스
- OOP
- typescript
- Spring
- 탐욕법
- javascript
- dfs
- 인접리스트
- Linux
- 인접행렬
- 알고리즘
- JWT
- 자료구조
- TIL
- css
- html
- Interceptor
Archives
- Today
- Total
처음부터 차근차근
[프로그래머스] Lv0 7의 개수 본문
728x90
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120912
문제 설명
내 풀이
function solution(array) {
let answer = 0;
let string = '';
for (let index of array) {
string = String(index);
for (let i = 0; i < string.length; i++) {
if (string[i] == '7') answer++
}
}
return answer
}
시간 복잡도가 n2인 방법으로 굉장히 비효율적이다.
그리고 왜 index로 했는지도 잘 모르겠다.
다른 사람의 풀이
function solution(array) {
return(array.join().split("").filter((el)=>{return el=="7"}).length)
}
오늘 배운 점
- 자바스크립트에는 reduce, map 말고도 다양한 메서드가 존재한다.
- filter를 사용하는 것도 한가지 방법
'코딩테스트 > Javascript' 카테고리의 다른 글
[프로그래머스] Lv2 올바른 괄호 (0) | 2023.10.31 |
---|---|
[프로그래머스] Lv1 예산 (0) | 2023.10.31 |
[프로그래머스] Lv1 나머지가 1이 되는 수 찾기 (1) | 2023.10.31 |
[프로그래머스] Lv0 캐릭터의 좌표 (0) | 2023.10.31 |
[프로그래머스] LV2 JadenCase 문자열 만들기 (0) | 2023.10.31 |