기타 47

[CKA][실습] 1. Core Concepts (2)

CKA 취득을 위해 Kodecloud의 CKA 실습 내용을 정리한 글 입니다. Practice Test - Namespaces $ alias k=kubectl $ k get ns $ k get po -n research #특정 ns에 pod 생성 $ k run redis --image=redis -n finance $ k get po -A 기타 : 같은 namespace내의 service를 호출할 때는 service 이름만으로 가능 다른 namaspace의 service를 호출할 때는 FQDN으로 가능 ..svc.cluster.local Practice Test - Services $ k get svc ## service의 label 확인 $ k label svc kubernetes --list=true..

기타/자격증 2023.02.05

[CKA][실습] 1. Core Concepts

CKA 취득을 위해 Kodecloud의 CKA 실습 내용을 정리한 글 입니다. Practice Test - PODs alias k=kubectl k run nginx --image=nginx #Pod의 이미지 확인 k describe po [이름] -n [ns] #Pod가 배포된 노드 확인 k get po -n [ns] -o wide k delete po webapp #Pod 수정 k run redis --image=redis123 k edit po redis 오류 케이스 : 존재하지 않는 image로 Pod를 만든 경우 Practice Test - ReplicaSets k get rs k get rs -o wide kubectl create deployment --image=nginx nginx --d..

기타/자격증 2023.02.04

[Medium] FibFrog

[문제] 개구리가 피보나치 수 만큼 뛰어 강 반대편으로 넘어갈 때 최소 점프 수를 구하는 문제 (넘어가지 못한다면 -1을 반환) FibFrog coding task - Learn to Code - Codility Count the minimum number of jumps required for a frog to get to the other side of a river. app.codility.com [코드] 시간복잡도 : O(N*log(N)) 피보나치수를 구한 다음 특정 나뭇잎에 도달할 수 있는지 체크하고 마지막으로 강 건너편에 도달할 수 있는지 체크 (코드가 깔끔하지 않아 개선의 여지가 있음) def solution(A): # write your code in Python 3.6 fib = [0 f..

기타/Codility 2022.06.11

[Medium] NumberSolitaire

[문제] 0 ~ N-1 의 배열에서 1~6 칸씩 이동하여 N-1에 도착할 때까지 방문한 index의 값의 합 중 가장 큰 값을 찾는 문제 NumberSolitaire coding task - Learn to Code - Codility In a given array, find the subset of maximal sum in which the distance between consecutive elements is at most 6. app.codility.com [코드] 시간복잡도 : O(N) 맨 끝에서 부터 1-6칸씩 이동하며 N-1에 도착할 때까지 방문한 index의 값의 합 중 최대값을 기록하고 0번째 배열의 계산 값을 반환 def solution(A): # write your code in P..

기타/Codility 2022.06.11

[Easy] MaxSliceSum

[문제] 배열 내 연속된 수들의 합이 가장 큰 경우의 값을 찾는 문제 MaxSliceSum coding task - Learn to Code - Codility Find a maximum sum of a compact subsequence of array elements. app.codility.com [코드] 시간복잡도 : O(N) 배열 내 이전 값들과의 합이 현재 값보다 작다면 다시 현재 값부터 더해나가기 시작한다 def solution(A): # write your code in Python 3.6 answer = -2147483648 sum = 0 for num in A : sum = sum + num sum = max(num, sum) answer = max(answer, sum) return ..

기타/Codility 2022.06.11
반응형