Code Kata/Python 24

[프로그래머스] 문제 25. 나누어 떨어지는 숫자 배열

20240909 풀이def solution(arr, divisor): result = [] for i in arr: if i % divisor == 0: result.append(i) if len(result) == 0: return [-1] return sorted(result) https://school.programmers.co.kr/learn/courses/30/lessons/12910 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.09

[프로그래머스] 문제 24. 서울에서 김서방 찾기

20240909 풀이def solution(seoul): for i in range(len(seoul)): if seoul[i] == 'Kim': return f'김서방은 {i}에 있다' https://school.programmers.co.kr/learn/courses/30/lessons/12919. 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.09

[프로그래머스] 문제 23. 콜라츠 추측

20240906 풀이def solution(num): answer = 0 while num != 1: if num % 2 == 0: num //= 2 else: num = num * 3 + 1 answer += 1 if answer >= 500: return -1 return answer https://school.programmers.co.kr/learn/courses/30/lessons/12943 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers..

Code Kata/Python 2024.09.06

[프로그래머스] 문제 22. 두 정수 사이의 합

20240905 풀이def solution(a, b): start = min(a, b) end = max(a, b) answer = sum(range(start, end + 1)) return answer https://school.programmers.co.kr/learn/courses/30/lessons/12912 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.05

[프로그래머스] 문제 21. 하샤드 수

20240905 풀이def solution(x): str_x = str(x) digit_sum = 0 for digit in str_x: digit_sum += int(digit) if x % digit_sum == 0: return True else: return False https://school.programmers.co.kr/learn/courses/30/lessons/12947 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.05

[프로그래머스] 문제 20. 정수 내림차순으로 배치하기

20240904 풀이def solution(n): a = list(str(n)) a.sort(reverse = True) answer= int(''.join(a)) return answer https://school.programmers.co.kr/learn/courses/30/lessons/12933 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.04

[프로그래머스] 문제 17. 자연수 뒤집어 배열로 만들기

20240904 풀이def solution(n): answer = [] str_n = str(n) for st_n in str_n[::-1]: answer.append(int(st_n)) return answer https://school.programmers.co.kr/learn/courses/30/lessons/12932 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.04

[프로그래머스] 문제 16. x만큼 간격이 있는 n개의 숫자

20240904 풀이def solution(x, n): answer = [] for i in range(n): answer.append(x * (i + 1)) return answer https://school.programmers.co.kr/learn/courses/30/lessons/12954 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.04

[프로그래머스] 문제 14. 약수의 합

20240903 풀이def solution(n): if n == 0: return 0 answer = 0 for i in range(1, n + 1): if n % i == 0: answer += i return answer https://school.programmers.co.kr/learn/courses/30/lessons/12928 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.03

[프로그래머스] 문제 12. 평균 구하기

20240702 풀이def solution(arr): answer = sum(arr) / len(arr) return answer20240903 풀이def solution(arr): answer = sum(arr) / len(arr) return answer https://school.programmers.co.kr/learn/courses/30/lessons/12944 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.03

[프로그래머스] 문제 11. 짝수와 홀수

20240702 풀이def solution(num): if num % 2 == 0: return 'Even' else: return 'Odd'20240903 풀이def solution(num): if num % 2 == 0: return 'Even' else: return 'Odd' https://school.programmers.co.kr/learn/courses/30/lessons/12937 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.03

[프로그래머스] 문제 10. 배열의 평균

20240702 풀이def solution(numbers): answer = sum(numbers) / len(numbers) return answer20240902 풀이def solution(numbers): answer = sum(numbers) / len(numbers) return answer https://school.programmers.co.kr/learn/courses/30/lessons/120817 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr

Code Kata/Python 2024.09.02