무근본 개발자에서 근본있는 개발자로...

무근본 개발자에서 근본있는 개발자로...

  • 분류 전체보기 (37)
    • 일기 (1)
    • 개발 (35)
      • AI&ML (2)
      • Django (7)
      • Docker (0)
      • Python (4)
      • graphQL (3)
      • 오늘의 소소한꿀팁 (7)
      • DataBase System(SNUON 강의) (2)
      • Go (3)
      • 네트워크 (2)
      • 알고리즘 (3)
      • aws (2)
  • 홈
  • 태그
  • 방명록
RSS 피드
로그인
로그아웃 글쓰기 관리

무근본 개발자에서 근본있는 개발자로...

컨텐츠 검색

태그

django go routine Postgres graphene rest-api docker django-serializer Algorithm leetcode graphql serverless machine code docker-compose rest-framework go programmers Asynchronous Python parellel pandas

최근글

댓글

공지사항

아카이브

전체 글(37)

  • 재미로 Python으로 Linked list 구현해보기

    class Node: def __init__(self, data): self.data = data self.next = None class LinkedList: def __init__(self): self.head = Node("head") self.last = self.head self.numData = 0 self.sorted = False def append(self, data): newNode = Node(data) self.last.next = newNode self.last = newNode self.numData += 1 self.sorted = False def slice(self, idx1, idx2): assert idx1 >= 1 and idx2 = idx1 - 1 and i < id..

    2020.02.01
이전
1 ··· 4 5 6 7
다음
티스토리
© 2018 TISTORY. All rights reserved.

티스토리툴바