본문 바로가기

카테고리 없음

2020-11-06 12시 개발자 글 모음 | "Software projects fo" 외 5개 이야기

[CVE 취약점] Microsoft SQL Server 원격 코드 실행 취약점 (CVE-2020-0618) by 정현철 about SQL

  • SQL Server 2014 Service Pack 3 for 32-bit Systems (CU)
  • SQL Server 2014 Service Pack 3 for x64-based Systems (CU)
  • SQL Server 2014 Service Pack 3 for x64-based Systems (GDR)


[leetCode] 1287. Element Appearing More Than 25% In Sorted Array (Python) by 장동현 about Python

  • there is exactly one integer in the array that occurs more than 25% of the time
  • arr: List[int]) -> int: answer = 0 percent_25_num = int(len(arr) // 4) cnt = Counter(arr) keys = list(cnt
  • 그 다음 collections의 Counter를 활용하여 arr 속의 각각의 값들이 몇 번씩 등장하는지 카운팅 해줍니다


GitHub의 master 브랜치를 Web 페이지로 게시하는 방법 (GitHub Pages) by 최흥배 about Git

  • online game server programmer
  • Visual Studio


[leetCode] 1122. Relative Sort Array (Python) by 장동현 about Python

  • Sort the elements of arr1 such that the relative ordering of items in arr1 are the same as in arr2
  • Elements that don't appear in arr2 should be placed at the end of arr1 in ascending order
  • arr2): temp1 = [] temp2 = [] cnt = Counter(arr1) for num in arr2: if num in arr1: temp1 = temp1 + [num] * cnt[num] temp2 = sorted([num for num in arr1 if num not in arr2 ]) return temp1 + temp2


typeorm cascade옵션 by 정영진


    Software projects for OCP by 안종석 about HTTPS