프로그래머스 Lv.0 첫 번째로 나오는 음수
개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2024. 1. 7. 00:43프로그래머스 Lv.0 첫 번째로 나오는 음수

class Solution { public int solution(int[] num_list) { int answer = -1; for(int i = 0; i < num_list.length; i++) { if(num_list[i] < 0) { answer = i; break; } } return answer; } }

프로그래머스 Lv.0 특정한 문자를 대문자로 바꾸기
개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2024. 1. 7. 00:34프로그래머스 Lv.0 특정한 문자를 대문자로 바꾸기

class Solution { public String solution(String my_string, String alp) { return my_string.replace(alp, alp.toUpperCase()); } }

프로그래머스 Lv.0 부분 문자열
개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2024. 1. 7. 00:21프로그래머스 Lv.0 부분 문자열

class Solution { public int solution(String str1, String str2) { int answer = 0; if(str2.contains(str1)) { answer = 1; } return answer; } }

프로그래머스 Lv.0 수 조작하기1
개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2023. 12. 25. 05:32프로그래머스 Lv.0 수 조작하기1

class Solution { public int solution(int n, String control) { for(int i = 0; i < control.length(); i++) { switch(control.charAt(i)) { case 'w' : n += 1; break; case 's' : n -= 1; break; case 'd' : n += 10; break; case 'a' : n -= 10; break; } } return n; } } int answer = 0;과 return answer;의 늪에 빠져서 헤매다가 문제를 다시 읽어보니 n의 값을 return하라고 되어있었다. 그래서 answer에 대한 집착을 버리고 바로 n으로 바꾸어주었다.

프로그래머스 Lv.0 카운트 다운 & 카운트 업
개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2023. 12. 25. 05:01프로그래머스 Lv.0 카운트 다운 & 카운트 업

class Solution { public int[] solution(int start, int end_num) { int[] answer = new int [ start - end_num + 1]; int idx = 0; while ( start >= end_num) { answer[idx++] = start; start--; } return answer; } } class Solution { public int[] solution(int start_num, int end_num) { int[] answer = new int [end_num - start_num + 1]; int idx = 0; while (start_num

728x90
반응형
image