알쓸코지
article thumbnail
[Lv.0/Python] 배열 자르기
Algorithm/프로그래머스 2023. 7. 28. 22:37

🔗 문제 https://school.programmers.co.kr/learn/courses/30/lessons/120833 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💻 Code def solution(numbers, num1, num2): return numbers[num1:num2 + 1]

article thumbnail
[Lv.0/Python] 아이스 아메리카노
Algorithm/프로그래머스 2023. 7. 28. 22:36

🔗 문제 https://school.programmers.co.kr/learn/courses/30/lessons/120819 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💻 Code def solution(money): return [money // 5500, money % 5500]

article thumbnail
[Lv.0/Python] 편지
Algorithm/프로그래머스 2023. 7. 27. 13:32

🔗 문제 https://school.programmers.co.kr/learn/courses/30/lessons/120898 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💻 Code def solution(message): return len(message) * 2

article thumbnail
[Lv.0/Python] 피자 나눠 먹기 (3)
Algorithm/프로그래머스 2023. 7. 27. 13:31

🔗 문제 https://school.programmers.co.kr/learn/courses/30/lessons/120816 💻 Code from math import ceil def solution(slice, n): return ceil(n / slice)

article thumbnail
[Lv.0/Python] 피자 나눠 먹기 (1)
Algorithm/프로그래머스 2023. 7. 27. 13:28

🔗 문제 https://school.programmers.co.kr/learn/courses/30/lessons/120814 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💻 Code from math import ceil def solution(n): return ceil(n / 7)

article thumbnail
[Lv.0/Python] 양꼬치
Algorithm/프로그래머스 2023. 7. 27. 13:18

🔗 문제 https://school.programmers.co.kr/learn/courses/30/lessons/120830 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💻 Code def solution(n, k): return 12000 * n + 2000 * (k - n // 10)