본문 바로가기

반응형

분류 전체보기

(131)
인천공항에서 환전할 때 인정되는 신분증 종류 신분증 같은 카드를 들고 다니기 귀찮아서 신분증이 필요한 순간에 핸드폰만 켜서 보여주면 되는 모바일 신분증을 사용하는 사람들이 있다. 그게 난데, 실물 주민등록증 / 운전면허증이 없어서 환전을 못할 뻔 했다. 환전할 때 '모바일 신분증'은 불가능하다. 그래서 환전을 못할 뻔 했는데, 공항에 비행기 타러 왔으니까 당연히 여권이 있었다. 환전소에서 여권에 주민등록번호 뒷자리가 적혀있냐고 물어봐서 확인해봤는데 다행히 있었다. 내가 갖고 있는 건 구형 여권, 그러니까 초록색 여권이었기 때문이다. 구형 여권은 주민등록번호 뒷자리가 표기되어있어서 신분증의 역할을 할 수 있었다. '여권에 당연히 주민등록번호 뒷자리가 써있는 게 아닌가?'했지만 신형 여권은 안 써있다고 한다. 그러므로 신분증의 역할을 할 수 없다. 여..
갓어스 집 없애기 집이 모이면 단지가 되는데 신의 손가락이랑 유성 써도 안 됐단 말이에요.... 그래서 운영진에게 이메일을 보냄 신의 손가락으로 열 번 두드리라는 답변이 옴 빠르게 세 번 두드리니까 없어졌다 결론: 집 마을 단지 없애고 싶으면 신의 손가락으로 빠르게 여러 번 두드리면 사라진다
코딩테스트 연습 [카카오 인턴] 키패드 누르기 파이썬 입출력 예를 보면서 써야하는 변수를 생각하는데 힌트를 얻었다. 그래서 왼손의 위치, 오른손의 위치, 다음에 누를 것을 변수로, 그리고 각 번호마다 다른 번호들과의 거리를 구해서 딕셔너리를 만들어놨다. def solution(numbers, hand): answer = '' hand = hand[0].upper() l='*' r='#' two = {1:1, 3:1, 5:1, 4:2, 6:2, 8:2, 0:3, 7:3, 9:3, '*':4, '#':4} five = {2:1, 4:1, 6:1, 8:1, 1:2, 3:2, 7:2, 9:2, 0:2, '*':3, '#':3} eight = {5:1, 7:1, 9:1, 0:1, 2:2, 4:2, 6:2, '*':2, '#':2, 1:3, 3:3} zero = {'..
한글이 안 쳐질 때 한글이 안 쳐지시나요? 윈도우 키를 누른 상태에서 스페이스바를 눌러서 언어를 변경하세요 windows + space bar 윈도우 + 스페이스바 gksrmfdl dks cuwudy gksrmfdl dks cuwlf Eo gksrmfdl dkscuwla gksrmf dkscuwla gksrmf dksehlf Eo gksrmf dksehla
[백준] 1152번 되는 풀이와 안 되는 풀이 [되는 풀이]word = input().split() print(len(word)) [안 되는 풀이]blank = input().strip().count(' ') print(blank+1) [고쳐서 되게 만든 풀이]blank = input().strip() if blank == '': print(0) else: print(blank.count(' ')+1) https://www.acmicpc.net/problem/1152 1152번: 단어의 개수첫 줄에 영어 대소문자와 공백으로 이루어진 문자열이 주어진다. 이 문자열의 길이는 1,000,000을 넘지 않는다. 단어는 공백 한 개로 구분되며, 공백이 연속해서 나오는 경우는 없다. 또한 문자열www.acmicpc.net
[파이썬] 코딩테스트 연습 레벨2 N개의 최소공배수 def solution(arr): answer = 1 a=arr[0] for i in range(1, len(arr)): b=arr[i] if b%a==0: arr[i]= b//a for j in arr: answer *= j return answer def solution(arr): answer = 1 a=arr[0] for i in range(1, len(arr)): b=arr[i] if b%a==0: arr[i]= b//a a=arr[1] for k in range(2, len(arr)): b=arr[i] if b%a==0: arr[i]= b//a for j in arr: answer *= j return answer def solution(arr): answer = 1 i=1 c=len(arr) ..
[백준] 2562번 파이썬 [통과되는 코드]a=int(input()) b=int(input()) c=int(input()) d=int(input()) e=int(input()) f=int(input()) g=int(input()) h=int(input()) i=int(input()) l = [a,b,c,d,e,f,g,h,i] print(max(l)) print(l.index(max(l))+1) [통과 안 되는 코드]l = list(map(int, input())) for i in range(8): l.append(int(input())) print(max(l)) print(l.index(max(l))+1)왜 안되는거지??? map을 쓸 거면 map(int, input().split())처럼 map(바꿔줄 타입, 개체'들')이어야 ..
matplotlib을 import하고 matplotlib.pyplot을 또 import하는 이유가 뭘까? https://stackoverflow.com/questions/36661876/what-is-the-difference-between-importing-matplotlib-and-matplotlib-pyplot What is the difference between importing matplotlib and matplotlib.pyplot? I'm still fairly new to python and am wondering if the x.y statement means y is a submodule of x? And if so, doesn't the command: import matplotlib.pyplot as plt only import this particular submo... stack..

반응형