Development

[TIL] 코딩테스트, Node.js 강의 과제, 회원가입 백엔드

개발자 강정 2022. 1. 28. 21:04

파이썬 코딩테스트 (성공)

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

 

GitHub - fancyers/learn-nodejs

Contribute to fancyers/learn-nodejs development by creating an account on GitHub.

github.com

 

게시판 만들기 프로젝트: 회원가입, 로그인, 로그인 확인 백엔드 코딩

https://github.com/fancyers/hanghae-blog

 

GitHub - fancyers/hanghae-blog: Node.js와 express로 로그인 기능이 없는 나만의 항해 블로그 만들기

Node.js와 express로 로그인 기능이 없는 나만의 항해 블로그 만들기. Contribute to fancyers/hanghae-blog development by creating an account on GitHub.

github.com