Stack

·CS/백준 풀이
처음에 풀때는 그 전 문제가 재귀여서 그런지 재귀로 풀었다. import sys s=list(sys.stdin.readline().rstrip()) bomb=list(sys.stdin.readline().rstrip()) def check(a,bomb): d = [] col=len(bomb) row = len(a) for x in range(row): if a[x]==bomb[0] and x+(col-1)
_0422
'Stack' 태그의 글 목록