일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 클라우드란?
- Make sure the Cursor is initialized correctly before accessing data for it.
- tlqkf
- 나이순 정렬
- pwable.kr
- kotlin
- python
- 애너그램 그룹
- cmd1
- Drive-By-Download
- 10814
- 클라우드가 뭐야
- 파이썬
- Docker
- cmd2
- 백준
- pwnable
- UNIQUE constraint failed
- 블록체인
- 액션바 필요없숴
- Couldn't read row 0
- java.lang.IllegalStateException
- 페니빙
- 6566
- col -1 from CursorWindow
- SQLiteConstraintException
- 쏘큩
- 포너블
- 코틀린
- pwnable.kr
- Today
- Total
목록백준 (2)
푸르미르
이 문제를 풀다가 알게된 새로운 사실이 있어서 글을 쓰게 되었다. 1 2 3 4 5 6 7 8 n=int(input()) member=[] for i in range(n): age, name=map(str, input().split()) member.append(tuple(int(age), name())) member.sort(key=lambda x: x[0]) for age, name in member: print(age, name) cs 회원의 나이와 이름을 tuple constructor로 묶어 member라는 리스트에 append했는데 오류가 났다. TypeError: tuple expected at most 1 argument, got 2 tuple생성자는 1개의 argument를 받는데 2개를..
EOF 처리를 이상하게 해서 8번 런타임에러(EOFERROR)가 났다.^^ 출력 기준을 맞춰 리스트를 정렬하는데 대가리 없어지는줄 알았으나 내 멱살잡고 끌고갔다. 정성스럽고 배울점이 많은 댓글을 종종 달아주시는 anonymous님이 가르쳐주셨다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 import collections anagrams = collections.defaultdict(list) li = [] tmp = [] while True: try: word = input() li.append(word) except EOFError: break for i in li: anagrams["".join(sorted(i))].append(..