전체 글 (153) 썸네일형 리스트형 [프로그래머스] 코딩테스트 입문 > 문자열 계산하기 #python 점수를 받은 최고점수이다. def solution(my_string): answer = 0 tempList = [] a = list((my_string.split(" "))) print(a) if a[0].isdigit() == True: tempList.append(int(a[0])) for i in range(1, len(a)): if a[i].isdigit() == True: if a[i-1] == '-': tempList.append(int(a[i])*(-1)) else : tempList.append(int(a[i])) answer = sum(tempList) return answer [프로그래머스] 코딩테스트 입문 > 직사각형 넓이 구하기 이게 왜 9점? def solution(dots): answer = 0 xCo = [] yCo = [] for i in range(4): xCo.append(dots[i][0]) yCo.append(dots[i][1]) xCo.sort() yCo.sort() answer = (xCo[2]-xCo[1]) * (yCo[2]-yCo[1]) return answer [프로그래머스] Summer/Winter Coding(~2018) > 소수 만들기 combinations 에 대해서 확실하게 사용할 수 있도록 하자. from itertools import combinations def isPrime(n): if n==1 or n==0 : return False elif n>1: for i in range(2,round(n/2)): if n%i == 0: return False return True def solution(nums): answer = 0 combin = list(combinations(nums,3)) for arr in combin: if isPrime(sum(arr)): answer += 1 return answer 이전 1 ··· 40 41 42 43 44 45 46 ··· 51 다음