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
- 공백null치환
- docker-compose
- 답안지표기잘못한느낌...
- 1000개 이상
- Codility
- 파이써닉
- docker
- s3목록
- Binary_gap
- 도커 에어플로
- 맞출수있었는데...
- python
- Glue의 두 가지 핵심 기능
- docker airflow
- 데이터카탈로그
- AWS
- 차이
- 공백Trim
- 코테
- 코딩테스트
- 파이서닉
- cyclerotation
- GCP mysql
- 공백트림
- airflow설치
- Glue
- import from 차이점
- 디비설치
- 이직 3개월차
- 프로그래머스
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