Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 도커 에어플로
- 맞출수있었는데...
- 데이터카탈로그
- airflow설치
- 이직 3개월차
- 1000개 이상
- Glue의 두 가지 핵심 기능
- 답안지표기잘못한느낌...
- docker
- 프로그래머스
- Codility
- docker-compose
- 공백null치환
- s3목록
- GCP mysql
- import from 차이점
- 공백트림
- 차이
- cyclerotation
- Binary_gap
- 디비설치
- 코딩테스트
- 코테
- AWS
- 파이서닉
- Glue
- docker airflow
- 파이써닉
- 공백Trim
- python
Archives
- Today
- Total
목록cyclerotation (1)
작은하마
[Codility] CyclicRotation
https://app.codility.com/programmers/lessons/2-arrays/cyclic_rotation/ CyclicRotation coding task - Learn to Code - Codility Rotate an array to the right by a given number of steps. app.codility.com # you can write to stdout for debugging purposes, e.g. # print("this is a debug message") def solution(A, K): answer=[] if len(A)==0: answer=A elif K==0 or K%len(A)==0 or len(A)==K : answer=A else: K..
코딩테스트/Codility
2021. 7. 21. 13:12