TIL

TIL230427

베스트오버 2023. 4. 27.

오늘 한 일

장고 심화 세팅, users CRUD, tests.py 작성, '협업을 위한 소통법' 강의 수강

https://github.com/beo202202/Django_ToDoList

 

GitHub - beo202202/Django_ToDoList

Contribute to beo202202/Django_ToDoList development by creating an account on GitHub.

github.com

https://beolog.tistory.com/69

 

협업을 위한 소통법

이렇게 소통! 1. 많이 말합시다 > 빠르게 가까워질 수 있기 때문 2. 미리 말합시다 > 미리 대비를 할 수 있기 때문 3. 명확하게 말합시다 > 공동 목표를 효율적으로 달성할 수 있기 때문 4. 근거를 가

beolog.tistory.com

https://beolog.tistory.com/79

 

페어코딩2 two sum

class Solution: def twoSum(self, nums, target): for i, j in range(len(nums)): # array = (i, j) # if nums[i]+nums[j] == target: # return array pass nums = [2, 7, 11, 15] target = 9 for index, nums in enumerate(nums): print(index, nums) class Solution: def t

beolog.tistory.com

내일 할 일

TODO LIST 기능 구현(조회, 수정, 삭제)

id(PK), title, is_complete, created_at, updated_at, completion_at, user_id(FK)

댓글