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
- 구슬탈출2
- 격파르타 합격후기
- 머신러닝
- Recursion: Davis' Staircase
- Interview Preparation Kit
- [sqld]자격증합격
- 코딩테스트
- 백준
- Algorithm
- 알고리즘
- 파이썬
- Special String Again
- Find the nearest clone
- DFS: Connected Cell in a Grid
- hackerrank
- 프로그래머스
- Common Child
- 피보나치 함수
- 매칭점수
- Roads and Libraries
- programmers
- candies
- python
- 격파르타 후기
- BFS: Shortest Reach in a Graph
- Max Array Sum
- 격파르타 장점
- 야근지수
- Reverse Shuffle Merge
- 해커랭크
Archives
- Today
- Total
Archive
[Hackerrank] [Medium] Sherlock and Anagrams 본문
https://www.hackerrank.com/challenges/sherlock-and-anagrams/problem
풀이
- 문자열이 주어졌을 때 anagram의 개수를 구하는 문제
- dictionary를 사용해 substring의 출현 빈도를 count함.
- key : substring, value : count
def sherlockAndAnagrams(s):
answer = 0
substr_dict = {}
for window_size in range(1, len(s)):
for start_idx in range(len(s) - window_size + 1):
# 정렬된 substring을 key값으로 함.
# s로부터 만들 수 있는 모든 substring을 구해 반복 횟수를 count함.
substr = "".join(sorted(s[start_idx : start_idx + window_size]))
if substr in substr_dict.keys():
answer += substr_dict[substr]
substr_dict[substr] += 1
else:
substr_dict[substr] = 1
return answer
'공부 > Algorithm' 카테고리의 다른 글
[Hackerrank] [Medium] Fraudulent Activity Notifications (0) | 2020.08.24 |
---|---|
[Hackrrank] [Medium] Count Triplets (0) | 2020.08.23 |
[programmers] Level4. 자동완성 (0) | 2020.08.17 |
[programmers] Level4. 도둑질 (0) | 2020.08.16 |
[Hackerrank] [Medium] New Year Chaos (0) | 2020.08.12 |
Comments