본문 바로가기

IT와 비즈니스를 연결하다.

검색하기
IT와 비즈니스를 연결하다.
프로필사진 sujiinsight

  • 분류 전체보기 (59)
    • "Today I Learned" 30일 프로젝트 (25)
    • IT 관련 소식 (23)
      • 블록체인 (21)
    • 북토크 (1)
    • 영어팁 (3)
    • 노트 (0)
    • 영자 신문 기사 (4)
    • SQL (0)
Guestbook
Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
일 월 화 수 목 금 토
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 31
Tags
  • SBA 서울산업진흥원 #마소캠퍼스 #데이터분석 #DT 스쿨 #데이터사이언스
  • if n!
more
Archives
Today
Total
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록if n! (1)

IT와 비즈니스를 연결하다.

TIL2 - Binary Tree Operations(Preorder Traversal)

def preorder(self, n): if n != None: print(str(n.item),'',end='') if n.left: self.preorder(n.left) if n.right: self.preorder(n.right)

"Today I Learned" 30일 프로젝트 2019. 5. 7. 23:41
이전 Prev 1 Next 다음

Blog is powered by kakao / Designed by Tistory

티스토리툴바