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
- 그리디 알고리즘
- Network
- N0Named
- CTF
- Python
- Digital Forensics
- Web Hacking
- 인코그니토
- C
- Incognito
- 정렬
- 써니나타스
- Database
- MySQL
- Text
- 구현
- Web
- 백준
- SuNiNaTas
- cryptography
- 문자열
- xcz.kr
- wargame
- HackCTF
- 수학
- misc
- 사칙연산
- php
- Forensics
- writeup
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 6996번 에너그램 본문
[Baekjoon/Python3] 6996번 에너그램
t = int(input())
for i in range(t):
alp = dict()
blp = dict()
a, b = input().split()
for j in a:
if j in alp:
alp[j] += 1
else:
alp[j] = 1
for k in b:
if k in blp:
blp[k] += 1
else:
blp[k] = 1
if alp == blp:
print(a, '&', b, 'are anagrams.')
else:
print(a, '&', b, 'are NOT anagrams.')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 7567번 그릇 (1) | 2020.12.05 |
---|---|
[Baekjoon/Python3/C] 7287번 등록 (0) | 2020.12.05 |
[Baekjoon/Python3] 6679번 싱기한 네자리 숫자 (0) | 2020.12.05 |
[Baekjoon/Python3] 6359번 만취한 상범 (0) | 2020.12.05 |
[Baekjoon/Python3] 5988번 홀수일까 짝수일까 (0) | 2020.12.05 |
Comments