일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 포트 죽이는법
- 시소 짝꿍
- 스프링부트
- 인프런
- 엔에첸
- 자바ORM표준JPA프로그래밍
- BFS
- 전적 검색
- 테크잇
- 김영한
- DFS
- 더티체킹
- 백엔드 스쿨3기
- 최주호
- JPA
- 라이엇 API
- 스프링 입문을 위한 자바 객체 지향의 원리와 이해
- 올리브영 고객센터
- java
- 알고리즘
- 자바
- already use
- 조회수중복
- 카카오2023신입공채
- 리코쳇로봇
- 인텔리제이 에러
- 백준
- 프로그래머스
- 멋쟁이사자차럼
- 영속성
- Today
- Total
목록알고리즘/프로그래머스 (14)
My Blog
https://school.programmers.co.kr/learn/courses/30/lessons/120906 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int n) { int answer = 0; answer = (n + "") //123 => "123" .chars() // "123" => s[49, 50, 51] 안에 있는 숫자들이 아스키코드로 변환 됨. .map(Character::getNumericValue) .sum(); return answer; } }
https://school.programmers.co.kr/learn/courses/30/lessons/131701 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr import java.util.*; class Solution { public int solution(int[] elements) { int answer = 0; int[] dataElements = new int[elements.length * 2]; for(int i=0; i< elements.length; i++){ dataElements[i] = elements[i]; dataElemen..
https://school.programmers.co.kr/learn/courses/30/lessons/120585 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int[] array, int height) { int answer = 0; for(int i=0; i height){ answer++; } } return answer; } }
https://school.programmers.co.kr/learn/courses/30/lessons/120826 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public String solution(String my_string, String letter) { String answer = ""; answer = my_string.replace(letter,""); return answer; } }
https://school.programmers.co.kr/learn/courses/30/lessons/120889 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr import java.util.*; class Solution { public int solution(int[] sides) { int answer = 0; int max_value = Arrays.stream(sides) .max() .getAsInt(); answer = Arrays.stream(sides) .sum(); if(answer-max_value
https://school.programmers.co.kr/learn/courses/30/lessons/120841 class Solution { public int solution(int[] dot) { int answer = 0; if(dot[0] > 0 && dot[1] > 0){ return 1; } else if(dot[0] 0){ return 2; } else if(dot[0] < 0 && dot[1] < 0){ return 3; } else{ return 4; } } }
https://school.programmers.co.kr/learn/courses/30/lessons/120830 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int n, int k) { int answer = 0; return (n * 12000) + (k * 2000) - (n/10) * 2000; } } n = 먹은 양꼬치 k = 먹은 음료수 n * 12000 = 양꼬치 값 k * 2000 = 음료수 값 n / 10 = 서비스 받을 음료수
https://school.programmers.co.kr/learn/courses/30/lessons/120829 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int angle) { int answer = 0; if(angle > 0 && angle 90 && angle < 180){ answer = 3; } else{ answer = 4; } return ..