We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c214b commit 71b4e33Copy full SHA for 71b4e33
juhee067/[week1]Array/array_length.js
@@ -0,0 +1,6 @@
1
+// 문자열 배열 strlist가 매개변수로 주어집니다.
2
+// strlist 각 원소의 길이를 담은 배열을 return하도록 solution 함수를 완성해주세요.
3
+
4
+function solution(strlist) {
5
+ return strlist.map((v) => v.length);
6
+}
0 commit comments