Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- string
- 변수
- JS
- 알고리즘
- hash table
- SasS
- vue.js
- JavaSceipt
- 자료형
- leetcode
- scss
- math
- 프로그래머스
- Algorithm
- sorting
- 파이썬
- 백준
- dynamic programming
- 컴포넌트
- JavaScript
- Python
- array
- github
- computed
- CSS
- greedy
- 코딩테스트
- HTML
- java
Archives
- Today
- Total
Posis
[프로그래머스] 배열 원소의 길이 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120854?language=javascript
문제 설명
문자열 배열 strlist가 매개변수로 주어집니다. strlist 각 원소의 길이를 담은 배열을 retrun하도록 solution 함수를 완성해주세요.
제한사항
- 1 ≤ strlist 원소의 길이 ≤ 100
- strlist는 알파벳 소문자, 대문자, 특수문자로 구성되어 있습니다.
입출력 예
strlist | result |
["We", "are", "the", "world!"] | [2, 3, 3, 6] |
["I", "Love", "Programmers."] | [1, 4, 12] |
입출력 예 설명
입출력 예 #1
- ["We", "are", "the", "world!"]의 각 원소의 길이인 [2, 3, 3, 6]을 return합니다.
입출력 예 #2
- ["I", "Love", "Programmers."]의 각 원소의 길이인 [1, 4, 12]을 return합니다.
나의 풀이
Java
class Solution {
public int[] solution(String[] strlist) {
int[] answer = new int[strlist.length];
for(int i = 0; i < strlist.length; i++) {
answer[i] = strlist[i].length();
}
return answer;
}
}
JavaScript
function solution(strlist) {
let answer = [];
for(let i = 0; i < strlist.length; i++) {
answer.push(strlist[i].length);
}
return answer;
}
// 방법2
function solution(strlist) {
return strlist.map((value) => value.length);
}
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 피자 나눠 먹기 (3) (0) | 2022.11.29 |
---|---|
[프로그래머스] 배열 두 배 만들기 (0) | 2022.11.29 |
[프로그래머스] 아이스 아메리카노 (2) | 2022.11.29 |
[프로그래머스] 짝수 홀수 개수 (0) | 2022.11.28 |
[프로그래머스] 문자열 뒤집기 (0) | 2022.11.28 |