전체 글 125

42888 오픈채팅방 / 오류 : TypeError: 'dict' object is not callable

중간에 TypeError: 'dict' object is not callable 이런 오류가 떴다 answer.append(name[rr[1]]+printer[rr[0]])를 answer.append(name[rr[1]]+printer(rr[0])) 라고 써서 발생한 오류였다. dictionary의 키를 이용해 값을 얻을 때는[ ]를 ( ) 로 실수로 쓰지 말자!!!! # 내 풀이 def solution(record): #딕셔너리에 이름 처리하기 name={} for i in range(len(record)): if record[i][0] == 'L': continue id_name = record[i].split() name[id_name[1]] = id_name[2] #answer(리스트)에 출력 메..

Python/알고리즘 2022.07.16

주제별 : 쇼핑가기 / 인터넷(돌발)

단골인 온라인 쇼핑몰, 주로 인터넷으로 하는 일 묘사 Ok. It’s a very easy Q. Actually I hardly go offline shopping because I can order whatever I want by using the internet. As you know, there are uncountable shopping web sites or apps which saves a lot of time and effort. So.. When I need to shop some clothes, I use an app called ‘zigzag’ once every week. It is a platform that provides clot..

주제별 : 공연보기/콘서트보기/음악감상

좋아하는 음악 장르, 좋아하는 가수 묘사 음악을 처음 좋아하게 된 계기, 취향 변화 ( 변화 => ㅇ / A B / ㅇ) 음악을 듣는 장소, 시간 묘사 라이브 음악 경험 => 해변경험 (과거) [음악 종류, 어린 시절] There have been many changes in my musical tastes over the years. When it comes to the one in the past, I was crazy about classical music. As I learned to play the piano when I was young, I got to know many classical music naturally. I loved Debussy’s music, because it was m..

주제별 : 국내여행/해외여행/해변가기

국내여행/해외여행/해변가기 2 본인이 즐겨 가는 해변 묘사 5 3 특별히 기억에 남는 해변 묘사 4 특별히 기억에 남는 해변 여행 설명 16 version A 2 좋아하는 국내여행 장소들 묘사 4 3 여행 가기 전 준비 과정 15 4 어렸을 때 갔었던 여행 묘사 => 인상깊은 해변/ 어렸을 때 기억나는 지형 관련 추억 묘사 16 15 I prefer an independent tour to a guided tour, because all the schedule is up to me. Also there are typical steps I take / when I prepare for a trip. First of all, I set my destination, and period. Next, I set ..

주제별 : 거주지 / 집휴가

거주지 Version A 1. 나의 집 묘사 2. 집에서 나의 일 묘사 3. 어렸을 때 살았던 집과 지금 집 비교 - 경험 # 집 과거 현재 비교 (경험) 12 It’s a very difficult Q. my houses have been so different over the years. When it comes to the one in the past, Well…. The house I used to live with my family was a 3 bedroom apartment in the city. I lived with my parents, and my brother. so the atmosphere of the house was lively. However although the well-..

[프로그래머스] 60057 문자열 압축

어려웠다!!!! # 복습 1회 22-07-10 2회 3회 4회 5회 # 오답 def solution(s): res=list() for j in range(1, len(s)//2+1): cnt=1 ss="" for i in range(0,len(s)-1,j): if s[i:i+j]==s[i+j:i+2*j]: cnt+=1 else: if cnt==1: ss+=s[i:i+j] else: ss+=str(cnt)+s[i:i+j] cnt=1 if j==1: #?? ss+=s[len(s)-1] #print(ss) res.append(ss) res_cnt=list() for x in res: res_cnt.append(len(x)) #print(res) #print(min(res_cnt)) return min(res_..

Python/알고리즘 2022.07.10