본문 바로가기

반응형

코딩

(20)
[백준] 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..

반응형