250x250
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
- googlesheet
- Level1
- 그로스해킹
- A태그
- cte
- WIL
- 알고리즘
- itertools
- 데이터리안
- googleappscript
- python
- time()
- 우선순위
- 함수성능평가
- with\
- AI 5기
- git #github #내일배움캠프
- 프로그래머스
- Iterator
- gitignore
- vscode
- 가상환경
- position
- 내일배움캠프
- 데벨챌
- 함수실행시간
- Display
- 데이터넥스트레벨챌린지
- venv
- iterable
Archives
- Today
- Total
05의 개발 계발
[페어프로그래밍] 230503 둘만의 암호 본문
728x90
페어프로그래밍 결과 코드
# 페어프로그래밍으로 제작한 코드
# 문자열skip에 포함되어 있는 알파벳은 순서에서 제외
# 문자열s의 각 알파벳 판별 for문
# index만큼의 뒷순서 알파벳으로 반환
# z를 넘어가면 다시 a부터 시작
# 결과값 리턴
def solution(s, skip, index):
alphabet = 'abcdefghijklmnopqrstuvwxyz'
# alphabet_list = list(ascii_lowercase)
answer = ''
for j in skip:
if j in alphabet:
alphabet = alphabet.replace(j,'')
for i in s:
# alphabet[alphabet.index(i)] = i
n = alphabet[(alphabet.index(i) + index)%len(alphabet)]
answer += n
return answer
흠터레스팅 코드
# ascii 코드 사용 , set활용 for 연산
from string import ascii_lowercase
def solution(s, skip, index):
result = ''
a_to_z = set(ascii_lowercase)
a_to_z -= set(skip)
a_to_z = sorted(a_to_z)
l = len(a_to_z)
dic_alpha = {alpha:idx for idx, alpha in enumerate(a_to_z)}
for i in s:
result += a_to_z[(dic_alpha[i] + index) % l]
return result
시사점 or 새로이 알게된 점
ascii를 활용하여 a to z를 사용할 수 있음을 알게 되었다.
set type은 list와 str과는 달리 ± 연산이 가능함을 염두하도록 하자.
728x90
'내일배움캠프 AI > 페어프로그래밍' 카테고리의 다른 글
[페어프로그래밍] 230517 신고 결과 받기 Lv.1 | set split dict (0) | 2023.05.17 |
---|---|
[페어프로그래밍] 230516 신규아이디추천_Lv.1 | replace() , [:] 슬라이싱 (0) | 2023.05.16 |
[페어프로그래밍] 230502 3진법 뒤집기 | divmod int (3) | 2023.05.02 |
[페어프로그래밍] 230501 비밀지도 | bin Zfill (0) | 2023.05.02 |
[페어프로그래밍] 230428 옹알이(1) | count (0) | 2023.04.28 |