boj 2607 비슷한단어(실버4)

김준오·2021년 7월 29일
0

알고리즘

목록 보기
21/91
post-thumbnail

문제

boj 2607 비슷한단어

오랜만에 푸는거라 가볍게 하려고 쉬운거로 하나 풀었다
한동안 일정이 있어서 쭉 쉬었는데 다시 슬슬 시작해야겠다

쉬운 문제라서 특별한 설명은 적을것이 없을것같다!

내 풀이

n = int(input())
count = 0
word1 = input().rstrip()

for _ in range(n-1):
  word = input().rstrip()
  if abs(len(word1) - len(word)) >= 2 :
    continue
  
  if len(word1) == len(word) or len(word1) == len(word) + 1:
    temp = list(word1)
    for w in word:
      if w in temp:
        temp.remove(w)

    if len(temp) <=1 :
      count += 1

  elif len(word) == len(word1) + 1:
    temp = list(word)
    for w in word1:
      if w in temp:
        temp.remove(w)

    if len(temp) <=1:
      count += 1

print(count)

결과

profile
jooooon

0개의 댓글

관련 채용 정보