일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- LeetCode
- java
- cpu scheduling
- Dynamic Programming
- Codility
- 그리디
- BubbleSort
- GCP
- golang
- easy
- Top-down
- Kotlin
- KAKAO
- GKE
- github
- mobaXTerm
- kubernetes
- 알고리즘
- k8s
- 피보나치
- Programmers
- 파이썬
- Python
- Backjoon
- docker
- Singleton Pattern
- Observer Pattern
- go
- Today
- Total
목록파이썬 (5)
To Be Developer
`https://www.acmicpc.net/problem/1932 1932번: 정수 삼각형 문제 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 위 그림은 크기가 5인 정수 삼각형의 한 모습이다. 맨 위층 7부터 시작해서 아래에 있는 수 중 하나를 선택하여 아래층으로 내려올 때, 이제까지 선택된 수의 합이 최대가 되는 경로를 구하는 프로그램을 작성하라. 아래층에 있는 수는 현재 층에서 선택된 수의 대각선 왼쪽 또는 대각선 오른쪽에 있는 것 중에서만 선택할 수 있다. 삼각형의 크기는 1 이상 500 이하이다. 삼각형을 이루고 있는 각 수는 www.acmicpc.net [Python 풀이] # 층의 수 N = int(input()) # 경로마다 가질 수 있는 최대의 값을 저장하는 변수 arr = []..
https://leetcode.com/problems/maximum-average-subarray-i/ Loading... Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com [Go 풀이] package main import "fmt" func main() { var nums = []int{4, 2, 1, 3, 3} fmt.Println(findMaxAverage(nums, 2)) } func findMaxAverage(nums []int, k int) float64 { // num..
https://leetcode.com/problems/find-pivot-index/ Loading... Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com [GoLang 풀이] package main import "fmt" func main() { a := []int{1, 7, 3, 6, 5, 6} fmt.Println(pivotIndex(a)) } func pivotIndex(nums []int) int { // nums의 길이 var numsLen int = len(nums) ..
https://leetcode.com/problems/remove-duplicates-from-sorted-array/ Remove Duplicates from Sorted Array - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com [GoLang 풀이] package main import "fmt" func main() { nums := []int{1, 1, 2} removeDuplicates(nums) } func removeDuplicates(nums []..
def solution(phone_book): # phone_book을 원소의 길이를 기준으로 # 오름차순으로 정렬 phone_book.sort(key = lambda x: len(x)) # 매개변수 배열의 크기를 구함 pbLen = len(phone_book) # 2중 for 문을 사용하여 하나 하나 비교해본다. # 0 ~ pbLen-1 for i in range(0, pbLen-1): # i 번째 인덱스의 길이를 k에 대입 k = len(phone_book[i]) # i+1 ~ pbLen 까지 for 문 for j in range(i+1, pbLen): # j 번째 원소의 0~k-1 의 문자가 phone_book[i] # 와 같다면 return False if phone_book[i] == phone..