전체406 공배수 https://school.programmers.co.kr/learn/courses/30/lessons/181936 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class 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; } return answer; } } [풀이] class Solution { public int solu.. 코딩테스트/프로그래머스 2023. 9. 14. 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; } } [풀이] class Solution { public int solution(int num, int n) { int answer.. 코딩테스트/프로그래머스 2023. 9. 14. 두 수의 연산값 비교하기 https://school.programmers.co.kr/learn/courses/30/lessons/181938# 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public int solution(int a, int b) { String a_b_str = Integer.toString(a) + Integer.toString(b); int a_b = Integer.valueOf(a_b_str); if(a_b >= 2*a*b){ return a_b; }else{ return 2*a*b; } } } [풀이] .. 코딩테스트/프로그래머스 2023. 9. 14. 더 크게 합치기 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 n1 = Integer.toString(a); String n2 = Integer.toString(b); String data1 = n1 + n2; String data2 = n2 + n1; if(data1.compareTo(data2) > 0.. 코딩테스트/프로그래머스 2023. 9. 14. 문자열 곱하기 https://school.programmers.co.kr/learn/courses/30/lessons/181940 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public String solution(String my_string, int k) { String answer = ""; for(int i = 0; i < k; i++){ answer += my_string; } return answer; } } [풀이] class Solution { // 문자열 my_string을 k번 반복하여 이어붙여 반환.. 코딩테스트/프로그래머스 2023. 9. 14. 문자열 리스트를 문자열로 변환 https://school.programmers.co.kr/learn/courses/30/lessons/181941 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public String solution(String[] arr) { String answer = ""; for(int i = 0; i < arr.length; i++){ answer += arr[i]; } return answer; } } [풀이] class Solution { // 문자열 배열의 요소들을 이어붙여서 반환하는 메서드 public .. 코딩테스트/프로그래머스 2023. 9. 14. 문자열 섞기 https://school.programmers.co.kr/learn/courses/30/lessons/181942 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public String solution(String str1, String str2) { String result = ""; for(int i = 0; i < str1.length(); i++){ result += str1.substring(i, i + 1); result += str2.substring(i, i + 1); } return res.. 코딩테스트/프로그래머스 2023. 9. 14. STS 단축키 설정 및 셋팅 1. 2. 프로젝트 창으로 이동 단축기 설정 단축기 : Alt + 1 2. 코드 에디터 창 이동 단축키 설정 단축기 : Alt + 2 개발일지/설치 및 셋팅 2023. 9. 14. 문자열 겹쳐쓰기 https://school.programmers.co.kr/learn/courses/30/lessons/181943 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr [문제] [정답] class Solution { public String solution(String my_string, String overwrite_string, int s) { String result = ""; String data_1 = my_string.substring(0,s); String data_2 = my_string.substring(s + overwrite_string.l.. 코딩테스트/프로그래머스 2023. 9. 13. Mysql설치 & 명령프롬포트 사용법 1. MySQL Installer 설치 URL : https://dev.mysql.com/downloads/windows/installer/8.0.html 2. 설치 로그인 & 회원가입 안해도 된다. 3. 설치 확인 & 실행 4. 설치할 버전 확인 뒤 선택해서 설치해준다. 설치완료 설정 화면 보안 설정 root 패스워드 설정 서버명 설정 설정 완료 설치 완료 Workbanch로 Mysql서버 접속하기 추가하기 DB 정보 입력하기 DB 패스워드 입력 창 DB 패스워드 입력후 Test Connection 누르기 연결 성공 접속하기 DB 접속 성공 화면 명령프롬포트 사용법 1. 환경변수 설정이 안되어있으면 Mysql Server 환경변수부터 설정해주자 위에서 서버를 설치를 했으니 서버가 설치된 bin폴더 부터.. 개발일지/설치 및 셋팅 2023. 9. 6. 아이디, 비밀번호 찾기 기능 build.gradle // 이메일 인증 라이브러리 implementation group: 'javax.mail', name: 'mail', version: '1.4.7' 1. 가입했을시 작성한 이메일(PK)로 아이디(username) 찾기 UserRespository 네이티브 쿼리 사용 @Query(value = " select * from User where email = ?1 ", nativeQuery = true) Optional findByEmail(String email); UserService @Transactional public User searchUserEmail(String email) { return userRepository.findByEmail(email).orElseThrow(.. 개발일지/스프링 2023. 1. 8. timestamp select *, timestampdiff(year, birth_date, now()) as age from employees where emp_no = 10001; 개발일지/MySQL 문제모음 2022. 12. 23. 이전 1 ··· 5 6 7 8 9 10 11 ··· 34 다음