Python으로 구현한 1032번 명령 프롬프트 문제 풀이입니다. https://www.acmicpc.net/problem/1032 1032번: 명령 프롬프트 첫째 줄에 파일 이름의 개수 N이 주어진다. 둘째 줄부터 N개의 줄에는 파일 이름이 주어진다. N은 50보다 작거나 같은 자연수이고 파일 이름의 길이는 모두 같고 길이는 최대 50이다. 파일이름은 www.acmicpc.net n = int(input()) first = list(input()) first_len = len(first) for i in range(n - 1) : other = list(input()) for j in range(first_len) : if first[j] != other[j] : first[j] = '?' print(..