일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Backjoon
- 파이썬
- golang
- Programmers
- BubbleSort
- k8s
- easy
- Python
- Observer Pattern
- 그리디
- Kotlin
- Dynamic Programming
- 피보나치
- 백준
- java
- Top-down
- KAKAO
- kubernetes
- 알고리즘
- docker
- GKE
- cpu scheduling
- LeetCode
- Singleton Pattern
- GCP
- github
- mobaXTerm
- Codility
- go
- Today
- Total
목록알고리즘 (59)
To Be Developer
https://leetcode.com/problems/power-of-four/ 불러오는 중입니다... [Go-Lang 풀이] package main // 메인 함수 func main() { println(isPowerOfFour(4)) } func isPowerOfFour(num int) bool { // num > 4 일 때까지 반복 for num > 4 { // 4로 나눈 나머지가 0 이 아닌 경우 return false if num%4 != 0 { return false } // num 을 4로 나누어준다. num /= 4 } // 반복문이 종료되면 num 이 1 or 4 이면 true 그렇지 않으면 false if num == 1 || num == 4 { return true } else { r..
class Solution(object): def isIsomorphic(self, s, t): # 문자열 길이 lnS = len(s) lnT = len(t) # s와 t의 길이가 다르면 return False if lnS != lnT: return False # 문자열을 list로 형변환한다. liS = list(s) liT = list(t) # 딕셔너리 변수를 2개 만든다. # key = s, value = t dic = {} # key = t, value = s dic1 = {} # 0 ~ lnS 까지 반복문을 돌린다. for i in range(lnS): # key = s, value = t 를 매개변수로 넣어 True 이면 무사 통과 if self.dicEle(dic, liS[i], liT[i]..
class Solution(object): def merge(self, nums1, m, nums2, n): """ :type nums1: List[int] :type m: int :type nums2: List[int] :type n: int :rtype: None Do not return anything, modify nums1 in-place instead. """ # nums1의 m번 인덱스부터 끝까지 삭제 del nums1[m:] # nums1 에 nums2의 0~n-1 인덱스 원소들 추가 nums1 += nums2[0:n] # 오름차순으로 정렬 nums1.sort() return nums1 https://leetcode.com/problems/merge-sorted-array/
class Solution(object): def reverseOnlyLetters(self, S): # 파라미터를 List로 변경 listS = list(S) # 리스트의 길이 ln = len(listS) # 알파벳 나온 것을 reverse한 정보 swap = [] # swap할 index 저장소 index = [] # 0 ~ ln-1 반복 for i in range(ln): # listS 의 원소가 알파벳인지 확인 if listS[i].isalpha() : # index에 i 위치 정보를 append index.append(i) # swap에 listS[i] 맨 앞으로 삽입 swap.insert(0, listS[i]) # index의 길이 indexLen = len(index) # index 길이 만..
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..
class Solution(object): class Solution(object): def rotateString(self, A, B): """ :type A: str :type B: str :rtype: bool """ # input A 의 길이 ln = len(A) # input B 의 길이 lnB = len(B) # input data가 "" 이면 True if ln == lnB == 0: return True # 길이가 같지 않으면 False if ln != lnB: return False # 0 ~ ln-1 까지 반복 for i in range(ln): # A[i~ln-1] + A[0~i] 가 B 와 같으면 True if A[i::]+A[:i] == B: return True # 반복문을 무사..