728x90
반응형

코테 노트 247

백준 20058 마법사 상어와 파이어스톰 C++

https://www.acmicpc.net/problem/20058 20058번: 마법사 상어와 파이어스톰 마법사 상어는 파이어볼과 토네이도를 조합해 파이어스톰을 시전할 수 있다. 오늘은 파이어스톰을 크기가 2N × 2N인 격자로 나누어진 얼음판에서 연습하려고 한다. 위치 (r, c)는 격자의 r행 c www.acmicpc.net 최종 코드 GitHub -> https://github.com/hwayeon351/BEAKJOON-Algorithms/blob/main/BJ20058.cpp GitHub - hwayeon351/BEAKJOON-Algorithms: 백준 알고리즘 소스 코드 모음 백준 알고리즘 소스 코드 모음. Contribute to hwayeon351/BEAKJOON-Algorithms dev..

백준 19238 스타트 택시 C++

https://www.acmicpc.net/problem/19238 19238번: 스타트 택시 첫 줄에 N, M, 그리고 초기 연료의 양이 주어진다. (2 ≤ N ≤ 20, 1 ≤ M ≤ N2, 1 ≤ 초기 연료 ≤ 500,000) 연료는 무한히 많이 담을 수 있기 때문에, 초기 연료의 양을 넘어서 충전될 수도 있다. 다 www.acmicpc.net 최종 코드 GitHub -> https://github.com/hwayeon351/BEAKJOON-Algorithms/blob/main/BJ19238.cpp GitHub - hwayeon351/BEAKJOON-Algorithms: 백준 알고리즘 소스 코드 모음 백준 알고리즘 소스 코드 모음. Contribute to hwayeon351/BEAKJOON-Alg..

Level 2 튜플 <2019 카카오 인턴십> Python 3

https://programmers.co.kr/learn/courses/30/lessons/64065?language=python3 코딩테스트 연습 - 튜플 "{{2},{2,1},{2,1,3},{2,1,3,4}}" [2, 1, 3, 4] "{{1,2,3},{2,1},{1,2,4,3},{2}}" [2, 1, 3, 4] "{{4,2,3},{3},{2,3,4,1},{2,3}}" [3, 2, 4, 1] programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level2_튜플.py GitHub - hwayeon351/Programmers-Algorithms: 프로그래머스 알고리즘 소스 코드 모음 ..

Level 4 가사 검색 <2020 KAKAO BLIND RECRUITMENT> Python 3

https://programmers.co.kr/learn/courses/30/lessons/60060 코딩테스트 연습 - 가사 검색 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level4_가사검색.py GitHub - hwayeon351/Programmers-Algorithms: 프로그래머스 알고리즘 소스 코드 모음 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/Programmers-Algorithms development by creating an account on GitHub. github.com from bisect import b..

Level 3 자물쇠와 열쇠 <2020 KAKAO BLIND RECRUITMENT> Python 3

https://programmers.co.kr/learn/courses/30/lessons/60059 코딩테스트 연습 - 자물쇠와 열쇠 [[0, 0, 0], [1, 0, 0], [0, 1, 1]] [[1, 1, 1], [1, 1, 0], [1, 0, 1]] true programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_자물쇠와열쇠.py GitHub - hwayeon351/Programmers-Algorithms: 프로그래머스 알고리즘 소스 코드 모음 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/Programmers-Algorithms ..

Level 2 괄호 변환 <2020 KAKAO BLIND RECRUITMENT> Python 3

https://programmers.co.kr/learn/courses/30/lessons/60058?language=python3 코딩테스트 연습 - 괄호 변환 카카오에 신입 개발자로 입사한 "콘"은 선배 개발자로부터 개발역량 강화를 위해 다른 개발자가 작성한 소스 코드를 분석하여 문제점을 발견하고 수정하라는 업무 과제를 받았습니다. 소스를 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level2_괄호변환.py GitHub - hwayeon351/Programmers-Algorithms: 프로그래머스 알고리즘 소스 코드 모음 프로그래머스 알고리즘 소스 코드 모음. Contri..

Level 2 문자열 압축 <2020 KAKAO BLIND RECRUITMENT > Python 3

https://programmers.co.kr/learn/courses/30/lessons/60057?language=python3 코딩테스트 연습 - 문자열 압축 데이터 처리 전문가가 되고 싶은 "어피치"는 문자열을 압축하는 방법에 대해 공부를 하고 있습니다. 최근에 대량의 데이터 처리를 위한 간단한 비손실 압축 방법에 대해 공부를 하고 있는데, 문 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level2_문자열압축.py GitHub - hwayeon351/Programmers-Algorithms: 프로그래머스 알고리즘 소스 코드 모음 프로그래머스 알고리즘 소스 코드 모음. ..

Level 3 징검다리 건너기 <2019 카카오 인턴십> Python3

https://programmers.co.kr/learn/courses/30/lessons/64062?language=python3 코딩테스트 연습 - 징검다리 건너기 [2, 4, 5, 3, 2, 1, 4, 2, 5, 1] 3 3 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_징검다리건너기.py GitHub - hwayeon351/Programmers-Algorithms: 프로그래머스 알고리즘 소스 코드 모음 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/Programmers-Algorithms development by crea..

Level 4 무지의 먹방 라이브 <2019 KAKAO BLIND RECRUITMENT> Python 3

https://programmers.co.kr/learn/courses/30/lessons/42891?language=python3 코딩테스트 연습 - 무지의 먹방 라이브 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level4_무지의먹방라이브.py GitHub - hwayeon351/Programmers-Algorithms: 프로그래머스 알고리즘 소스 코드 모음 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/Programmers-Algorithms development by creating an account on GitHub. githu..

Level 3 길 찾기 게임 <2019 KAKAO BLIND RECRUITMENT> Python 3

https://programmers.co.kr/learn/courses/30/lessons/42892?language=python3 코딩테스트 연습 - 길 찾기 게임 [[5,3],[11,5],[13,3],[3,5],[6,1],[1,3],[8,6],[7,2],[2,2]] [[7,4,6,9,1,8,5,2,3],[9,6,5,8,1,4,3,2,7]] programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_길찾기게임.py GitHub - hwayeon351/Programmers-Algorithms: 프로그래머스 알고리즘 소스 코드 모음 프로그래머스 알고리즘 소스 코드 모음. Contr..

728x90
반응형