Python/프로그래머스9 프로그래머스 - 배열 두 배 만들기 (python) def solution(numbers): n = 0 answer = [] for i in numbers: n = i * 2 answer.append(n) return answer 2022. 10. 29. 프로그래머스 - 하샤드 수 def solution(x): a = list(str(x)) count = 0 for i in a: count += int(i) if x % count == 0: answer = True else: answer = False return answer 2022. 10. 17. 프로그래머스 - 핸드폰 번호 가리기 문제 설명 프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다. 전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 *으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요. 제한 조건 phone_number는 길이 4 이상, 20이하인 문자열입니다. 입출력 예phone_numberreturn "01033334444" "*******4444" "027778888" "*****8888" 내 풀이 def solution(phone_number): answer = "*"*(len(phone_number)-4)+phone_number[-4:] return answer 2022. 8. 22. 서울에서 김서방 찾기 def solution(seoul): for i in range(len(seoul)): if seoul[i] == "Kim": answer = "김서방은 "+str(i)+"에 있다" return answer 2022. 7. 29. 이전 1 2 3 다음