본문 바로가기

프로그래머스7

leetcode 2652. Sum Multiples https://leetcode.com/problems/sum-multiples/description/ Sum Multiples - LeetCode Can you solve this real interview question? Sum Multiples - Given a positive integer n, find the sum of all integers in the range [1, n] inclusive that are divisible by 3, 5, or 7. Return an integer denoting the sum of all numbers in the given range satisf leetcode.com 1 2 3 4 5 6 7 8 class Solution(object): def su.. 2023. 5. 16.
프로그래머스 짝수의 합 def solution(n): n//=2 answer = n*(n+1) return answer https://school.programmers.co.kr/learn/courses/30/lessons/120831 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1부터 n까지의 합 == n(n+1)/2 에서 2를 곱해주면 짝수합이죵 Sum From 1 to n ==n(n+1)/2 multiple two mean Evens' sum 2022. 10. 19.
프로그래머스 두 수의 나눗셈 def solution(num1, num2): answer = int((num1/num2)*1000) return answer https://school.programmers.co.kr/learn/courses/30/lessons/120806 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 2022. 10. 19.
프로그래머스 중복된 숫자 개수 def solution(array, n): answer = array.count(n) return answer https://school.programmers.co.kr/learn/courses/30/lessons/120583 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr list의 count 함수 사용하시면 됩니다 Use count() function 2022. 10. 19.
프로그래머스 배열의 평균값 def solution(numbers): answer = sum(numbers)/len(numbers) return answer https://school.programmers.co.kr/learn/courses/30/lessons/120817 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 쉽죠 2022. 10. 19.
직사각형 별찍기 1 2 3 n, m = map(int, input().strip().split()) for i in range(m): print("*"*n) cs 2022. 3. 15.
백준 없는 숫자 더하기 1 2 3 def solution(numbers): answer = 45-sum(numbers) return answer cs 이런 문제에서 numbers 하나하나 뒤지면서 없는 숫자를 따로 찾는 방식으로 접근하게되면 입력이 많을경우 Timeout 생길수도 있거든요 Ad-hoc, heuristic한 기법 으로 0~9까지의 합이 45 라는 사실을 알고 있으면 45에서 numbers의 합한값을 빼면 없는 숫자들의 합이 나오겠죵 그러면 여기에서 선생님~ 이런 방식은 어떻게 떠오르는 건가요? 라고 하시면 반복학습이 답입니다. 알고리즘 문제도 수능문제 처럼 반복학습 하면 되는거같아요 2022. 1. 16.