DS

DS/Coding Test

[Python] 숫자 문자열과 영단어

2021 카카오 채용연계형 인턴십 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr num_dic = {"zero":"0", "one":"1", "two":"2", "three":"3", "four":"4", "five":"5", "six":"6", "seven":"7", "eight":"8", "nine":"9"} def solution(s): answer = s for key, value in num_dic.items(): answer = answer.replace(key, value) return int(answer)

DS/Coding Test

[Python][Greedy] 체육복

프로그래머스 Greedy 문제: 체육복 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(n, lost, reserve): set_lost = set(lost) - set(reserve) set_reserve = set(reserve) - set(lost) for i in set_reserve: if i-1 in set_lost: set_lost.remove(i-1) elif i+1 in set_lost: set_lost.remove(i+1) return n-len(set_lost)

DS/Coding Test

[Python][dot product] 내적

프로그래머스 월간 코드 챌린지 시즌1 내적(dot product) 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(a, b): answer = 0 for i in range(len(a)): ab = a[i]*b[i] answer += ab return answer def solution(a, b): return sum([x*y for x, y in zip(a, b)])

DS/Coding Test

[Python][스택/큐] 올바른 괄호

프로그래머스 스택/큐 문제 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답코드 def solution(s): st = list() for c in s: if c == '(': st.append(c) if c == ')': try: st.pop() except IndexError: return False return len(st) == 0 내가쓴코드.. 정답은 출력되었는데, 테스트문제에서 런타임에러 & 2개 실패발생.. from collections import Counter def solution(s): answer='' val = list(Count..

DS/Coding Test

[Python] 성격유형 검사하기

2022 KAKAO TECH INTERNSHIP 성격 유형 검사하기 문제링크는 아래 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 좋다고 생각하는 코드. def solution(survey, choices): answer='' dic = {"R" : 0,"T" : 0,"C" : 0,"F" : 0,"J" : 0,"M" : 0,"A" : 0,"N" : 0} for s, c in zip(survey, choices): if c>4: dic[s[1]] += c-4 elif c= 5: select_type = type_list[j][1] elif choices[j..

log:->
'DS' 카테고리의 글 목록 (6 Page)