글
프로그래머스 C# 배열 원소의 길이(Length, 자바)
프로그래밍
2022. 12. 26. 14:07
728x90
SMALL
using System;
public 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;
}
// 각 Array에서 string Length를 취득한다.
return answer;
}
}
///////////
자바
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;
}
}
import java.util.Arrays;
class Solution {
public int[] solution(String[] strList) {
return Arrays.stream(strList).mapToInt(String::length).toArray();
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 사분면 나누기 점의 위치 구하기(삼항연산자, 3항연산자) (0) | 2022.12.26 |
---|---|
프로그래머스 C# 피자 나눠먹기1(Math.Celling(), 삼항연산자, P, J) (0) | 2022.12.26 |
프로그래머스 C# 직각삼각형 출력하기(split, Console.Write, Console.WriteLine, P, J) (0) | 2022.12.26 |
프로그래머스 C# 과일장수(Array.Sort(), JAVA) (0) | 2022.12.26 |
Hello Coding 숫자 야구 C# (0) | 2022.12.25 |