일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 코딩테스트
- 주석
- Maven
- sts
- 자바의정석
- 공부
- 깃허브
- spring
- 포트포워딩
- 일상기록
- Linux
- ncloud
- peachcong
- 자바
- Eclipse
- 네이버클라우드
- github
- Repositort복사
- Project
- 웹배포
- 프로젝트
- AWS
- EC2
- 깃허브프로필
- navercloud
- Java
- 프로그래머스
- Code Templates
- Git
- swap
- Today
- Total
목록Java (21)
PEACHCONG
문제 💻 프로그래머스 - flag에 따라 다른 값 반환하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181933 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 (1) 💡 if문 이용 class Solution { public int solution(int a, int b, boolean flag) { if(flag) return a + b; else return a - b; } } 풀이 (2) 💡 삼항연산자 이용 class Solution { public int solutio..
문제 💻 프로그래머스 - 조건 문자열 (Lv.0) 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; if(ineq.equals(">") && ineq.equals("=")) { answer = n >= m ? 1 : 0; } else if(ineq.equals("") &&..
문제 💻 프로그래머스 - 홀짝에 따라 다른 값 반환하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181935 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 (1) 💡 Math.pow() 제곱함수 이용 class Solution { public int solution(int n) { int answer = 0; if(n % 2 == 1) { for(int i = 1; i
문제 💻 프로그래머스 - 공배수 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181936 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💡 풀이 class Solution { public int solution(int number, int n, int m) { return (number % n == 0 && number % m == 0) ? 1 : 0; } }
문제 💻 프로그래머스 - n의 배수 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181937 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 (1) 💡 if문 이용 class Solution { public int solution(int num, int n) { if(num % n == 0){ return 1; } else { return 0; } } } 풀이 (2) 💡 삼항연산자 이용 class Solution { public int solution(int num, int n) ..
문제 💻 프로그래머스 - 두 수의 연산값 비교하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181938 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💡 풀이 class Solution { public int solution(int a, int b) { int result1 = Integer.parseInt(String.valueOf(a) + String.valueOf(b)); int result2 = 2 * a * b; // return result1 >= result2 ? re..
문제 💻 프로그래머스 - 더 크게 합치기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181939 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 (1) 💡 정수 + "" 를 이용하여 String으로 만든 후 다시 parseInt 💡 if문을 사용하여 결과 값을 return class Solution { public int solution(int a, int b) { int result1 = Integer.parseInt("" + a + b); int result2 = Intege..
문제 💻 프로그래머스 - 문자열 곱하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181940 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 (1) 💡 for문을 이용한 문자열 반복 출력 class Solution { public String solution(String my_string, int k) { String answer = ""; for(int i = 1; i
문제 💻 프로그래머스 - 문자 리스트를 문자열로 변환하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181941 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 (1) 💡 for문 이용 class Solution { public String solution(String[] arr) { String answer = ""; for(int i = 0; i < arr.length; i++) { answer += arr[i]; } return answer; } } 풀이 (2) 💡 Stri..
문제 💻 프로그래머스 - 문자열 섞기(Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181942 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💡 풀이 class Solution { public String solution(String str1, String str2) { String answer = ""; for(int i = 0; i < str1.length(); i++) { answer += str1.charAt(i); answer += str2.charAt(i); } return ..