Mock Interview: Apple #1

JJ·2021년 3월 30일
0

Algorithms

목록 보기
113/114

Missing Number

class Solution {
    public int missingNumber(int[] nums) {
        int total = 0;
        int result = 0;
        for (int i = 0; i < nums.length; i++) {
            total += i + 1;
            result += nums[i];
        }
        
        return total - result; 
    }
}

Runtime: 0 ms, faster than 100.00% of Java online submissions for Missing Number.
Memory Usage: 39.7 MB, less than 21.37% of Java online submissions for Missing Number.

1부터 n까지 더해주면서 값도 다 더해주고
마지막에 차이를 return 하면 되는 방식

Count and Say

class Solution {
    public String countAndSay(int n) {
        //개 거지같은 문제네요
        if (n == 1) return "1";
        
        String s = "1";
        
        for (int i = 1; i < n; i++) {
            s = helper(s);
        }
        
        return s; 
    }
    
    private String helper(String s) {
        StringBuilder sb = new StringBuilder();
        char cur = s.charAt(0);
        int i = 1;
        int count = 1; 
        while (i < s.length()) {
            char c = s.charAt(i);
            if (c != cur) {
                sb.append(count).append(cur);
                count = 1;
                cur = s.charAt(i);
            } else {
                count++;
            }
            i++;
        }
        
        sb.append(count).append(cur);
        
        return sb.toString();
    }

}

Runtime: 1 ms, faster than 99.89% of Java online submissions for Count and Say.
Memory Usage: 36.6 MB, less than 71.01% of Java online submissions for Count and Say.

재귀로 answer을 n까지 계속 돌려주기
재귀에서는 sb를 써서 string 쓸때보다 빠르게 해주고
while문으로 끝까지 보면서 만약 char이 전이랑 같으면 count를 올리고 만약 아니면 다음걸로 넘어가는~~

0개의 댓글

관련 채용 정보