[Codetree] 행복한 수열의 개수 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/2/problems/number-of-happy-sequence/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysinput = sys.stdin.readlinen, m = map(int, input().split(" "))# happy = 0happy = []graph = []for _ in range(n): temp = list(map(int, input().rstrip().split(" "))) graph.append(temp)t_graph =..