프로그래머스 14

[Python] 프로그래머스 로그인 성공?

https://school.programmers.co.kr/learn/courses/30/lessons/120883 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 문제풀이 def solution(id_pw, db): for i in db: if id_pw[0] in i: if id_pw[1] == i[1]: return "login" else: return "wrong pw" return "fail"

[Python] 프로그래머스 등수 매기기

https://school.programmers.co.kr/learn/courses/30/lessons/120882?language=python3 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 문제풀이 def solution(scores): if scores != None: mean_score = [] answer = [] for socre in scores: mean = (socre[0] + socre[1]) / len(socre) mean_score.append(mean) sort_mean_scores = sorted(mean_score,reverse..

[Python] 프로그래머스 피자 나눠 먹기(1)

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

[Python] 프로그래머스 짝수는 싫어요

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