[BaekJoon] 1912번 : 연속합 (Python) by 장동현 about 백준,Python
- split() inputNums = [int(num) for num in inputNums] inputNums
- append(max(maxSum[i-1] + inputNums[i]
- inputNums[i])) maxSum = maxSum[1:] print(max(maxSum))
zoom PC 다운로드 화상회의 툴 by 전재훈
[Programmers] 해시 : 위장 (Python) by 장동현 about Python
- def solution(clothes): answer = 1 spy_clothes_dict = {} for cloth in clothes: if cloth[1] not in spy_clothes_dict
- keys(): spy_clothes_dict[cloth[1]] = 1 else: spy_clothes_dict[cloth[1]] = spy_clothes_dict[cloth[1]] + 1 all_values = list(spy_clothes_dict
- values()) values_without_zero = [val for val in all_values if val != 0] for value in values_without_zero: answer = answer * (value + 1) answer = answer - 1 return answer
[Unity] Coroutine VS Invoke by 이현진
- - yield return 구문을 어딘가에 가짐 (참고로
- yield return은 실행을 중단 시키고 다음 프레임에 이후 구문이 실행되도록 함)
- // Coroutine 정의 IEnumerator Func() { yield return; } // Coroutine 실행 StartCoroutine("Func"); // 0
GRASP (object-oriented design) by 이상배
- GRASP는 객체 지향 디자인의 클래스 및 객체에 책임을 할당하기위한 지침으로 구성됩니다
- and define the messaging between the objects to fulfill the requirements"
- "요구 사항을 식별하고 도메인 모델을 작성한 후 적절한 클래스에 메소드를 추가하고 요구 사항을 충족시키기 위해 오브젝트 간 메시징을 정의하십시오
Redis를 활용하여 서버 요청 속도 줄이기 by 최준영 about Django,Redis
- Follow all the topics you care about
- and we’ll deliver the best stories for you to your homepage and inbox