def preorder(root): return [root.val] + preorder(root.left) + preorder(root.right) if root else [] def inorder(root): return inorder(root.left) + [root.val] + inorder(root.right) if root else [] def postorder(root): return postorder(root.left) + postorder(root.right) + [root.val] if root else [] leetcode.com/problems/binary-tree-inorder-traversal/discuss/283746/all-dfs-traversals-preorder-inorde..
[Book] Cracking the coding interview 도서 입니다. 코딩 인터뷰 완전 분석 국내도서 저자 : 게일 라크만 맥도웰(Gayle Laakmann McDowell) / 이창현역 출판 : 인사이트 2017.08.14 상세보기 Cracking the Coding Interview (Paperback) 외국도서 저자 : Gayle Laakmann McDowell 출판 : CareerCup 2015.04.09 상세보기 [Video] 관련 동영상 강의 입니다. 자료구조/알고리즘 기초 강의 - Cracking the coding interview [Source code] 소스코드 입니다. github.com/careercup/CtCI-6th-Edition-Python careercup/CtCI..
● 파이썬 공부 외국어 사이트1 www.w3schools.com/python/default.asp Python Tutorial Python Tutorial Learning by Examples With our "Try it Yourself" editor, you can edit Python code and view the result. Click on the "Try it Yourself" button to see how it works. Python File Handling In our File Handling section you will learn how to open, r www.w3schools.com ● 파이썬 공부 외국어 사이트2 www.tutorialspoint.com/python_data..
www.hackerrank.com/domains/python // 깔끔하게 integer 나누기 / 소수 나누기 n이 5일때, 12345 를 출력하기 if __name__ == '__main__': print(*range(1, int(input())+1), sep='') >>> s = set("Hacker") >>> print s.difference({"Rank":1}) set(['a', 'c', 'e', 'H', 'k', 'r']) >>> s - set("Rank") set(['H', 'c', 'r', 'e']) To All Beginners Overthere!! Don't try to copy the style of others . Shorten the code as long as you are ab..
● InterviewBit에서 튜토리얼 따라서 실제로 해보기 inner-game.tistory.com/420 InterviewBit - brush up skills for coding interview (python) 갑자기 코딩인터뷰를 꼭 파이썬으로 봐야한다고 해서.. 파이썬을 리마인드 할수 있는 몇개의 사이트를 둘러봤다. 가장 먼저 생각나기도 했던, 이 사이트가 좋은것 같다. www.interviewbit.com/invite/hail inner-game.tistory.com ● InterviewBitHackerrank - 파이썬 코딩 공부 기초 inner-game.tistory.com/423 Hackerrank - 파이썬 코딩 공부 기초 사이트(Python) www.hackerrank.com/doma..
갑자기 코딩인터뷰를 꼭 파이썬으로 봐야한다고 해서.. 파이썬을 리마인드 할수 있는 몇개의 사이트를 둘러봤다. 가장 먼저 생각나기도 했던, 이 사이트가 좋은것 같다. www.interviewbit.com/invite/hail-29ad Level 1 : Basics of Python Input and Output Easy 6 minutes Variables and Types Easy 6 minutes Arithmetic operators on Numbers Easy 6 minutes Arithmetic operators on Strings Easy 3 minutes Level 2 : Flow Control & Functions Conditions and If-Else Easy 5 minutes Loops a..
내 블로그 - 관리자 홈 전환 |
Q
Q
|
---|---|
새 글 쓰기 |
W
W
|
글 수정 (권한 있는 경우) |
E
E
|
---|---|
댓글 영역으로 이동 |
C
C
|
이 페이지의 URL 복사 |
S
S
|
---|---|
맨 위로 이동 |
T
T
|
티스토리 홈 이동 |
H
H
|
단축키 안내 |
Shift + /
⇧ + /
|
* 단축키는 한글/영문 대소문자로 이용 가능하며, 티스토리 기본 도메인에서만 동작합니다.