반응형

☕️ 자바를 Java 20

[Java] 프로그래머스 : 코드 처리하기

https://school.programmers.co.kr/learn/courses/30/lessons/181932 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 문자열 code가 주어집니다.code를 앞에서부터 읽으면서 만약 문자가 "1"이면 mode를 바꿉니다. mode에 따라 code를 읽어가면서 문자열 ret을 만들어냅니다.mode는 0과 1이 있으며, idx를 0 부터 code의 길이 - 1 까지 1씩 키워나가면서 code[idx]의 값에 따라 다음과 같이 행동합니다.mode가 0일 때code[idx]가 "1"이 아니면 idx가 짝수일 때만 ret의..

[Java] 프로그래머스 : 조건 문자열

https://school.programmers.co.kr/learn/courses/30/lessons/181934 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr class Solution { public int solution(String ineq, String eq, int n, int m) { int answer = 0; boolean goe = ineq.equals(">") && eq.equals("="); boolean loe = ineq.equals("") && eq.equals("!"); ..

[Java] 프로그래머스 : 홀짝에 따라 다른 값 반환하기

https://school.programmers.co.kr/learn/courses/30/lessons/181935 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr class Solution { public int solution(int n) { int answer = 0; for(int i=n; i>0; i-=2) { answer += n%2==1 ? i : i*i; } return answer; }}

[Java] 프로그래머스 : 공배수

https://school.programmers.co.kr/learn/courses/30/lessons/181936 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.krclass Solution { public int solution(int number, int n, int m) { int answer = 0; if(number%n==0 && number%m==0) { answer = 1; } else { answer = 0; } ..

[Java] 프로그래머스 : n의 배수

https://school.programmers.co.kr/learn/courses/30/lessons/181937 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr class Solution { public int solution(int num, int n) { int answer = 0; if(num%n == 0) { answer = 1; } else { answer = 0; } return answer; }}

[Java] 프로그래머스 : 두 수의 연산값 비교하기

https://school.programmers.co.kr/learn/courses/30/lessons/181938 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr class Solution { public int solution(int a, int b) { int answer = 0; int first = Integer.parseInt(Integer.toString(a) + Integer.toString(b)); int second = 2*a*b; if(first>second..

[Java] 프로그래머스 : 더 크게 합치기

https://school.programmers.co.kr/learn/courses/30/lessons/181939 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr class Solution { public int solution(int a, int b) { int answer = 0; String A = Integer.toString(a); String B = Integer.toString(b); int first = Integer.parseInt(A+B); in..

[Java] 프로그래머스: 문자 리스트를 문자열로 변환하기

https://school.programmers.co.kr/learn/courses/30/lessons/181941 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr class Solution { public String solution(String[] arr) { String answer = ""; for(String i : arr) { answer += i; } return answer; }}

반응형