동연이의 지식 저장소
/
👨🏻💻 Programming WIKI
/
알고리즘 문제 정리
/
이것이 코딩테스트다 with Python 예시
/
곱하기 혹은 더하기
Search
Share
❔
곱하기 혹은 더하기
•
강의 동영상
[이것이 코딩 테스트다 with Python] 13강 그리디 알고리즘 유형 문제 풀이
※ 이 동영상은 『이것이 취업을 위한 코딩 테스트다』 책 내용을 토대로 제작되었습니다. 이 책은 취업과 이직을 결정하는 알고리즘 인터뷰 준비 방법을 알려 드립니다.▶ 도서 자세히 보기 : https://www.hanbit.co.kr/store/books/look.php?p_cod...
•
나의 풀이
nums
=
[
int
(
item
)
for
item
in
input
(
)
]
result
=
nums
.
pop
(
0
)
for
item
in
nums
:
if
result
==
0
:
result
+=
item
else
:
if
item
==
0
or
item
==
1
:
result
+=
1
else
:
result
*=
item
print
(
result
)
Python
복사
•
강의 풀이
푸는 방법이 동일하여 링크로 대체
python-for-coding-test/2.py at 7c35923a691756ce162e4f343d80d21fb6450e24 · ndb796/python-for-coding-test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters You can't perform that action at this time. You signed in with another tab or window.