본문 바로가기

카테고리 없음

2020-07-12 08시 개발자 글 모음 | "[leetCode] 231. Powe" 외 3개 이야기

[leetCode] 989. Add to Array-Form of Integer (Python) by 장동현 about Git,Python

  • length <= 10000 0 <= A[i] <= 9 0 <= K <= 10000 If A
  • K: int) -> List[int]: A = list(map(str
  • join(A)) answer = num_A + K answer = list(str(answer)) answer = list(map(int


콘웨이의 법칙(Conway's law) by 이종립

  • The basic thesis of this article is that organizations which design systems (in the broad sense used here) are constrained to produce designs which are copies of the communication structures of these organizations
  • There is need for a philosophy of system design management which is not based on the assumption that adding manpower simply adds to productivity
  • The development of such a philosophy promises to unearth basic questions about value of resources and techniques of communication which will need to be answered before our system-building technology can proceed with confidence


Continuous Delivery (지속적 전달) by 이종립

  • Continuous Delivery is the ability to get changes of all types—including new features
  • bug fixes and experiments—into production
  • or into the hands of users


[leetCode] 231. Power of Two (Python) by 장동현 about Python

  • Input: 1 Output: true Explanation: 20 = 1
  • Input: 16 Output: true Explanation: 24 = 16
  • n: int) -> bool: answer = False pow_2s = [] for i in range(50): pow_2s