title: "[프로그래머스] A로 B 만들기 Python 파이썬 해설 (Level 0) - 이도훈"
cleanUrl: "programmers/120886"
description: "프로그래머스 Level 0 문제 [A로 B 만들기]의 풀이를 정리합니다."
from collections import Counter
def solution(before, after):
return 1 if Counter(before) == Counter(after) else 0
프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges