일상
-
S사 백엔드 코딩테스트 및 면접 내용일상 2019. 8. 11. 14:58
통신관련 S사 백엔드 개발자로 지원했던 내용을 정리해보았다. 코딩테스트 코딜리티(https://app.codility.com/programmers/)에 초대되서 3문제를 풀었다. 1. rather, harder 와 같이 키워드를 주면 해당 단어에서 틀린 스펠링의 갯수를 세는문제 public class test1_1 { public static void main(String[] args) { System.out.println(solution("a","z")); } public static int solution(String A, String B) { int[] resultArrayA = createCntArr(A); int[] resultArrayB = createCntArr(B); int result =..