파이썬 코딩테스트 (성공)
https://programmers.co.kr/learn/courses/30/lessons/42584
def solution(prices):
answer = []
for idx, val in enumerate(prices):
find = False
for i in range(idx+1,len(prices)):
if prices[i] < val:
answer.append(i-idx)
find = True
break
if find:
continue
answer.append(len(prices) - idx - 1)
return answer
효율성을 해결하는 것이 제일 어려운 것 같다. 그만큼 해결했을 때에는 보람도 크다.
Node.js 강의 듣기 및 숙제
https://github.com/fancyers/learn-nodejs
게시판 만들기 프로젝트: 회원가입, 로그인, 로그인 확인 백엔드 코딩
https://github.com/fancyers/hanghae-blog
'Development' 카테고리의 다른 글
[bootstrap] float, text, flexbox 정렬하기 (0) | 2022.01.29 |
---|---|
[ajax] 서버에서 보낸 error message 출력하기 (0) | 2022.01.28 |
[TIL] 강의(Todo list API), 코딩테스트, Git 강의 (0) | 2022.01.27 |
[JavaScript] 0으로 가득찬 array를 만들고 싶다면? (1) | 2022.01.27 |
[TIL] 오늘 한 공부들, Node.js 프로젝트 기능 추가 (0) | 2022.01.26 |