-
백준 1316 [파이썬 Python]알고리즘 Algorithms/백준 BaekJoon 알고리즘 2020. 3. 30. 17:10
파이썬 Python
내 풀이
n = int(input())
for i in range(n):
word = input()
for i in range(1,len(word)):
if word.find(word[i-1]) > word.find(word[i]):
n -=1
print(n)숏코딩
n = 0
for i in range(int(input())):
word = input()
if list(word) == sorted(word, key=word.find):
n+=1
print(n)* word를 list로 만든 것과 key라는 기준으로 sort 한 값과 같다면 이는 그룹 단어이다.
'알고리즘 Algorithms > 백준 BaekJoon 알고리즘' 카테고리의 다른 글
백준 2557 - Hello World! [Python / c] (0) 2021.09.05 백준 2839 [파이썬 PYTHON] (0) 2020.04.02 백준 2941 [파이썬 Python] (0) 2020.03.30 백준 5622 [파이썬 Python] (0) 2020.03.30 백준 2908 [파이썬 Python] (0) 2020.03.30