https://algospot.com/judge/problem/read/TRAVERSAL algospot.com :: TRAVERSAL 트리 순회 순서 변경 문제 정보 문제 트리를 순회하는 알고리즘은 트리의 모든 노드들을 특정 순서에 맞춰 방문하지만, 트리는 배열처럼 1차원적인 구조가 아니기 때문에 단 한 가지의 당연한 algospot.com import sys input = sys.stdin.readline def get_sub_tree(root, inorder): root_idx = inorder.index(root) left_tree = inorder[:root_idx] right_tree = inorder[root_idx + 1:] return root_idx, left_tree, right_tr..