본문 바로가기

Java/프로그래머스

(232)
[JAVA] 프로그래머스 - 영어가 싫어요 https://school.programmers.co.kr/learn/courses/30/lessons/120894 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr    정답  class Solution { public long solution(String numbers) { long answer = 0; String nums[] = {"zero","one","two","three","four","five","six","seven","eight","nine"}; for(int i=0; i ..
[JAVA] 프로그래머스 - 대문자와 소문자 https://school.programmers.co.kr/learn/courses/30/lessons/120893 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr     정답  class Solution { public String solution(String my_string) { StringBuilder answer = new StringBuilder(); for(int i=0; i=97 && cur  다른 사람의 풀이  class Solution { public String solution(String ..
[JAVA] 프로그래머스 - 암호 해독 https://school.programmers.co.kr/learn/courses/30/lessons/120892 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr  정답  class Solution { public String solution(String cipher, int code) { StringBuilder answer = new StringBuilder(); char temp[] = new char[cipher.length()+1]; int idx = 1; for(i..
[JAVA] 프로그래머스 - 369 게임 https://school.programmers.co.kr/learn/courses/30/lessons/120891 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr     정답  class Solution { public int solution(int order) { int answer = 0; String str = String.valueOf(order); for(int i=0; i
[JAVA] 프로그래머스 - 가까운 수 https://school.programmers.co.kr/learn/courses/30/lessons/120890 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr    정답  class Solution { public int solution(int[] array, int n) { int answer = 0; int min = Integer.MAX_VALUE; for(int i=0; i  다른 사람의 풀이   import java.util.*;class Solution { public int sol..
[JAVA] SWEA 2027. 대각선 출력하기 https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=1&contestProbId=AV5QFuZ6As0DFAUq&categoryId=AV5QFuZ6As0DFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=JAVA&select-1=1&pageSize=10&pageIndex=2 SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com 정답  import java.util.Scanner;class Solution{ public static void main(..
[JAVA] 프로그래머스 - 삼각형의 완성조건(1) https://school.programmers.co.kr/learn/courses/30/lessons/120889 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr    정답  class Solution { public int solution(int[] sides) { int answer = 0; int a = sides[0]; int b = sides[1]; int c = sides[2]; int max = sides[0]; for(int i=1; i
[JAVA] 프로그래머스 - 중복된 문자 제거 https://school.programmers.co.kr/learn/courses/30/lessons/120888 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr    정답  import java.util.*;class Solution { public String solution(String my_string) { StringBuilder answer = new StringBuilder(); LinkedHashSet set = new LinkedHashSet(); for(int i=0; i