Noëlle 2年前
コミット
6c60725fe3
この署名に対応する既知のキーがデータベースに存在しません
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      day3-2.py

+ 1
- 1
day3-2.py ファイルの表示

@@ -26,7 +26,7 @@ def main():
first, second, third = [set(elf) for elf in group]
debug(first, second, third)
debug(first & second & third)
common_item = list(first.intersection(second, third))[0]
common_item = list(first & second & third)[0]
values.append(ascii_letters.index(common_item)+1)
print(sum(values))

読み込み中…
キャンセル
保存