728x90
반응형

코테 노트/프로그래머스 115

Level 3 가장 긴 팰린드롬 Python 3

https://programmers.co.kr/learn/courses/30/lessons/12904?language=python3 코딩테스트 연습 - 가장 긴 팰린드롬 앞뒤를 뒤집어도 똑같은 문자열을 팰린드롬(palindrome)이라고 합니다. 문자열 s가 주어질 때, s의 부분문자열(Substring)중 가장 긴 팰린드롬의 길이를 return 하는 solution 함수를 완성해 주세요. 예를들 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_가장긴팰린드롬.py GitHub - hwayeon351/Programmers-Algorithms: 프로그래머스 알고리즘 소스 ..

Level 3 스타 수열 Python 3

https://programmers.co.kr/learn/courses/30/lessons/70130?language=python3 코딩테스트 연습 - 스타 수열 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 creating an account on GitHub. github.com fro..

Level 3 모두 0으로 만들기 Python 3

https://programmers.co.kr/learn/courses/30/lessons/76503?language=python3 코딩테스트 연습 - 모두 0으로 만들기 각 점에 가중치가 부여된 트리가 주어집니다. 당신은 다음 연산을 통하여, 이 트리의 모든 점들의 가중치를 0으로 만들고자 합니다. 임의의 연결된 두 점을 골라서 한쪽은 1 증가시키고, 다른 한 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_모두0으로만들기.py hwayeon351/Programmers-Algorithms 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon3..

Level 3 2 x n 타일링 Python3

https://programmers.co.kr/learn/courses/30/lessons/12900?language=python3# 코딩테스트 연습 - 2 x n 타일링 가로 길이가 2이고 세로의 길이가 1인 직사각형모양의 타일이 있습니다. 이 직사각형 타일을 이용하여 세로의 길이가 2이고 가로의 길이가 n인 바닥을 가득 채우려고 합니다. 타일을 채울 때는 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_2xn타일링.py hwayeon351/Programmers-Algorithms 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/P..

Level 3 다단계 칫솔 판매 Python 3

https://programmers.co.kr/learn/courses/30/lessons/77486?language=python3 코딩테스트 연습 - 다단계 칫솔 판매 민호는 다단계 조직을 이용하여 칫솔을 판매하고 있습니다. 판매원이 칫솔을 판매하면 그 이익이 피라미드 조직을 타고 조금씩 분배되는 형태의 판매망입니다. 어느정도 판매가 이루어진 후, programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_다단계칫솔판매.py hwayeon351/Programmers-Algorithms 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/Progr..

Level 3 순위 Python 3

https://programmers.co.kr/learn/courses/30/lessons/49191?language=python3 코딩테스트 연습 - 순위 5 [[4, 3], [4, 2], [3, 2], [1, 2], [2, 5]] 2 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_순위.py hwayeon351/Programmers-Algorithms 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/Programmers-Algorithms development by creating an account on GitHub. githu..

Level 3 가장 먼 노드 Python3

https://programmers.co.kr/learn/courses/30/lessons/49189?language=python3# 코딩테스트 연습 - 가장 먼 노드 6 [[3, 6], [4, 3], [3, 2], [1, 3], [1, 2], [2, 4], [5, 2]] 3 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_가장먼노드.py hwayeon351/Programmers-Algorithms 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/Programmers-Algorithms development by creating an..

Level 3 단속카메라 Python3

https://programmers.co.kr/learn/courses/30/lessons/42884?language=python3 코딩테스트 연습 - 단속카메라 [[-20,15], [-14,-5], [-18,-13], [-5,-3]] 2 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level3_단속카메라.py hwayeon351/Programmers-Algorithms 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/Programmers-Algorithms development by creating an account on GitHub. g..

Level 2 큰 수 만들기 Python3

https://programmers.co.kr/learn/courses/30/lessons/42883?language=python3 코딩테스트 연습 - 큰 수 만들기 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level2_큰수만들기.py hwayeon351/Programmers-Algorithms 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/Programmers-Algorithms development by creating an account on GitHub. github.com def solution(number, k): stack ..

Level 2 조이스틱 Python3

https://programmers.co.kr/learn/courses/30/lessons/42860?language=python3 코딩테스트 연습 - 조이스틱 조이스틱으로 알파벳 이름을 완성하세요. 맨 처음엔 A로만 이루어져 있습니다. ex) 완성해야 하는 이름이 세 글자면 AAA, 네 글자면 AAAA 조이스틱을 각 방향으로 움직이면 아래와 같습니다. ▲ - 다 programmers.co.kr 최종 코드 GitHub -> https://github.com/hwayeon351/Programmers-Algorithms/blob/main/level2_조이스틱.py hwayeon351/Programmers-Algorithms 프로그래머스 알고리즘 소스 코드 모음. Contribute to hwayeon351/..

728x90
반응형