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

설정

트랙백

댓글