전.py
[python] 프로그래머스 성격 유형 검사하기
https://school.programmers.co.kr/learn/courses/30/lessons/118666/solution_groups?language=python3 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(survey, choices): answer = '' num = [3, 2, 1, 0, 1, 2, 3] dic = {'R':0, 'T':0, 'C':0, 'F':0, 'J':0, 'M':0, 'A':0, 'N':0} for i in range(len(choices)): if choices[i] > 4: dic[su..
2023. 1. 11. 11:33