[Python] 프로그래머스 - 땅따먹기(LEVEL2)
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/12913 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(land): # n행 4열 for i in range(len(land) - 1): land[i + 1][0] = max(land[i][1], land[i][2], land[i][3]) + land[i+1][0] land[i + 1][1] = max(land[i][0], land[i][2], land[i][3]) + land[i+1][1] land[i + 1][2] = max..
ALGORITHM/프로그래머스
2020. 3. 14. 02:58
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스택
- Python
- 코딩테스트
- SWExpert
- 2019 Kakao Blind Recruitment
- 괄호
- 파이썬
- 2020 KAKAO BLIND RECRUITMENT
- hash
- SW Expert
- C++
- 딕셔너리
- combination
- 문자열
- 백준
- 재귀
- dictionary
- Permutation
- 완전탐색
- BOJ
- 프로그래머스
- 문자열처리
- 해시
- 힙
- 구현
- programmers
- left join
- 정렬
- 순열
- 우선순위큐
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함