글
프로그래머스 C# 편지(개쉬움, P, J)
프로그래밍
2022. 12. 28. 13:49
728x90
SMALL
using System;
public class Solution {
public int solution(string message) {
//string nospace = message.Replace(" ", "");
int answer = 0;
for(int i =0;i<message.Length;i++)
{
answer += 2;
//공백도 문자로 취급한다고 했으니 그냥 2씩 추가하면 된다. 공백을 취급안하면 replace를 쓰면 되는데 공백을 더 취급해줘야 한다면 if문을 써야할 듯하다.
}
return answer;
}
}
////
파이썬
def solution(message):
return len(message)*2
자바
class Solution {
public int solution(String message) {
return message.length()*2;
}
}
import java.util.*;
class Solution {
public int solution(String message) {
String[] arr = message.split("");
return arr.length * 2;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 배열 자르기(StringBuilder 대신, CopyOfRange) (0) | 2022.12.28 |
---|---|
프로그래머스 C# 최댓값 만들기1(Array.Sort(), P, J) (0) | 2022.12.28 |
프로그래머스 C# 특정 문자 제거하기(replace, P, J) (0) | 2022.12.28 |
프로그래머스 C# 삼각형의 완성조건(1) (int[] -> Array.Sort(), P, J) (0) | 2022.12.26 |
프로그래머스 C# 아이스 아메리카노(몫과 나머지, P, J) (0) | 2022.12.26 |