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
- Express
- GIT
- Sequelize
- cookie
- Dinosaur
- AWS
- 정렬
- 게임
- MongoDB
- mongoose
- OCR
- game
- react
- JavaScript
- nodejs
- dfs
- MySQL
- Bull
- jest
- flask
- TypeScript
- nestjs
- Nest.js
- Queue
- 공룡게임
- Python
- class
- typeORM
- 자료구조
Archives
- Today
- Total
목록str[::] (1)
포시코딩
[프로그래머스][Lv.0] 암호 해독
문제 https://school.programmers.co.kr/learn/courses/30/lessons/120892 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 내 풀이 def solution(cipher, code): answer = '' a = 1 while code*a < len(cipher)+1: answer += cipher[code*a-1:code*a] a += 1 return answer 다른 풀이 def solution(cipher, code): return cipher[code-1::code] 문자열 자르기에 대해 3번째 인자를 활..
자료구조알고리즘/문제풀이
2022. 12. 31. 19:33