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
- 18249
- c#
- 우분투
- 윈도우
- 자료구조 목차
- 강의실2
- 탄막
- 백준
- MySQL
- 유니티
- 탄막 스킬 범위
- 원형
- 2020 KAKAO BLIND RECRUITMENT
- 토글 그룹
- 단어 수학
- SWEA
- 수 만들기
- 회의실 배정
- 3344
- 문자열 압축
- AI Hub
- 3273
- 알고리즘
- 영상 프레임 추출
- 그리디알고리즘
- mysqld.sock
- 마우스 따라다니기
- 알고리즘 목차
- 걷는건귀찮아
- 탄막 이동
Archives
- Today
- Total
와이유스토리
[문자열] 프로그래머스 [1차] 뉴스 클러스터링 Python 본문
https://programmers.co.kr/learn/courses/30/lessons/17677
def solution(str1, str2):
answer = 0
total = []
down = []
up = []
str1 = str1.upper()
str2 = str2.upper()
for i in range(len(str1)-1):
if str1[i:i+2].isalpha():
total.append(str1[i:i+2])
for i in range(len(str2)-1):
if str2[i:i+2].isalpha(): # isalpha, isdigit, isalnum
if str2[i:i+2] in total:
up.append(str2[i:i+2])
total.remove(str2[i:i+2])
down.append(str2[i:i+2])
for t in total:
down.append(t)
print(up)
print(down)
if len(down) ==0: # 모두 공집한인 경우+분모가 0인 경우
temp = 1
else:
temp = float(len(up))/len(down)
print(temp)
answer = int(temp * 65536)
return answer
'코딩테스트 > 문자열' 카테고리의 다른 글
[문자열, 이진탐색] 프로그래머스 순위 검색 Python (0) | 2022.02.04 |
---|---|
[딕셔너리] 프로그래머스 오픈채팅방 Python (0) | 2022.02.04 |
[문자열] 프로그래머스 [3차] n진수 게임 C++ (0) | 2022.02.04 |
[딕셔너리] 프로그래머스 [3차] 압축 Python (0) | 2022.02.04 |
[문자열 변환] 프로그래머스 [3차] 방금그곡 Python (0) | 2022.02.04 |
Comments