본문 바로가기

카테고리 없음

2020-06-22 22시 개발자 글 모음 | "[leetCode] 507. Perf" 외 10개 이야기

카라마조프가의 형제들을 읽다 by 정기욱

  • 그 불행한 사람에 대한 경멸이 들어 있지 않을까요…… 지금 우리가 그 사람의 영혼을 마치 위에서
  • 알료샤는 '함께 살면서 모든 것을 보면서도 아무것도 비난하지 않음'으로써 '그의 폐부를 찔렀다' (192p)
  • 단 한 번만이라도 그애를 다시 바라볼 수 있다면


CSS 정리 #2 CSS Selector by 서진규 about CSS


    [DevOps] zsh 설치 방법 (Oh My Zsh 까지..) by 이동원 about zsh

    • # Uncomment the following line to change how often to auto-update (in days)
    • # Uncomment the following line to disable auto-setting terminal title
    • # Uncomment the following line if you want to change the command execution time


    코딩테스트 #3 프로그래머스 탐욕법 체육복 by 서진규

    • filter ( ( lostStdNum ) => stdNum !== lostStdNum ) ; reserve = reserve
    • filter ( ( reserveStdNum ) => stdNum !== reserveStdNum ) ; } } ) ; lost
    • filter ( ( reserveStdNum ) => afterStdNum !== reserveStdNum ) ; } } ) ; return answer - lost


    [칼럼] 고군분투하는 식약처에 체계적 지원을 by 최윤섭


      [Docker] 컨테이너 내에서 외부 호스트의 API 이용하기 by 채문창 about Docker


        6월 22일 - 1 by 김이삭

        • - 논리 실증주의를 기반으로 선험적 인간관에 기반한 이론을 비판하며 등장
        • - 비교행정론이 후진국에 발전 방법을 제시하여 주지 못함을 비판하며 등장
        • - 정통적인 행정학이 사회 문제를 해결하지 못함을 비판하며 등장


        [Kotlin] 생성자 정리 by 사명기 about Kotlin

        • class D ( val name : String ) { var age : Int = 20 var height : Int = 500 constructor ( name : String
        • D(val name: String) 이것이 주 생성자이고 클래스 블록 내의 constructor 키워드로 시작하는 것들이 부 생성자입니다
        • class E { var name : String var age : Int = 1 var height : Int = 2 init { println ( "call Init Block!" ) } constructor ( name : String ) { this


        react native datetimepicker 라이브러리 사용하기 by 윤해은 about Git


          [leetCode] 541. Reverse String II (Python) by 장동현 about Python

          • you need to reverse the first k characters for every 2k characters counting from the start of the string
          • If there are less than 2k but greater than or equal to k characters
          • then reverse the first k characters and left the other as original


          [leetCode] 507. Perfect Number (Python) by 장동현 about Python

          • We define the Perfect Number is a positive integer that is equal to the sum of all its positive divisors except itself
          • num): if num <= 1: return False my_sum = 1 for i in range(2
          • sqrt(num) + 1)): if num % i == 0: my_sum = my_sum + i + num / i return num == my_sum