문제
https://school.programmers.co.kr/learn/courses/30/lessons/120854
설계
파이썬
def solution(strlist):
answer = []
for word in strlist:
answer.append(len(word))
return answer
자바스크립트
function solution(strlist) {
return strlist.map(str => str.length);;
}
'PS (Problem Solving) > Programmers' 카테고리의 다른 글
[프로그래머스] 아이스 아메리카노 - 파이썬, 자바스크립트 (0) | 2023.01.19 |
---|---|
[프로그래머스] 잘라서 배열로 저장하기 - 파이썬, 자바스크립트 (0) | 2023.01.19 |
[프로그래머스] 중복된 숫자 개수 - 파이썬, 자바스크립트 (0) | 2023.01.19 |
[프로그래머스] 배열 뒤집기 - 파이썬, 자바스크립트 (0) | 2023.01.19 |
[프로그래머스] 피자 나눠먹기 (3) - 파이썬, 자바스크립트 (0) | 2023.01.19 |