일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- k8s
- Dynamic Programming
- Singleton Pattern
- BubbleSort
- 그리디
- LeetCode
- kubernetes
- mobaXTerm
- Python
- 알고리즘
- Programmers
- Backjoon
- docker
- 파이썬
- github
- Observer Pattern
- Codility
- Kotlin
- golang
- GKE
- cpu scheduling
- 백준
- Top-down
- KAKAO
- easy
- java
- 피보나치
- GCP
- go
- Today
- Total
목록알고리즘 (59)
To Be Developer
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/repeated-substring-pattern/ LeetCode - The World's Leading Online Programming Learning Platform 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 [JAVA 풀이] class Solution { public boolean repeatedSubstringPattern(String s) { // 매개변수 s의 길이 int sLen = s.length(); /..
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 []..
https://leetcode.com/problems/plus-one 불러오는 중입니다... [GoLang 풀이] package main import "fmt" func main() { a := []int{9, 9, 9} fmt.Println(plusOne(a)) } func plusOne(digits []int) []int { // 캐리 변수 var carry int = 1 // digits의 길이 var ln int = len(digits) // 결과값 Slice 변수 var result []int // digits를 마지막 인덱스부터 0번까지 반복 for i := ln - 1; i >= 0; i-- { // carry와 digits[i]를 더함 dig := digits[i] + carry // di..
https://app.codility.com/programmers/lessons/4-counting_elements/ 4. Counting Elements lesson - Learn to Code - Codility app.codility.com def solution(N, A): # N 개의 원소를 가지고 있는 list 생성 li = [0] * N # N+1 이 나왔을 때의 max 값 mx = 0 # 현재의 max 값 preMx = 0 # A의 원소를 하나하나 반복 for i in A: # 원소가 N+1 이면 현재 최대 값을 # mx 변수에 대입하여 N+1 이 실행됬는지 확인 if i == N+1: mx = preMx # 1
https://app.codility.com/programmers/lessons/4-counting_elements/ 4. Counting Elements lesson - Learn to Code - Codility app.codility.com def solution(X, A): # 비어있는 딕셔너리 변수 dic = {} # A의 길이 ln = len(A) # 0 ~ ln 까지 반복 for i in range(ln): # dicCount 함수 호출 dicCount(dic, A[i]) # 딕셔너리 길이가 X 이면 인덱스 리턴 if len(dic) == X: return i # 원소가 나왔는지 안나왔는지 검증해주는 코드 def dicCount(dic, key): try: pass except: # 원소가 ..