본문 바로가기

카테고리 없음

2021-01-04 06시 개발자 글 모음 | "[백준 알고리즘] 1929번 소수 구" 외 6개 이야기

2020년 연말정산 - 댕댕이. 건강. 일. by 박인

  • 물론 꾸준히 진행하지 못하고 있는 것도 많지만 ( 근력운동 그리고 명상 ) 사이드 프로젝트 덕분에 습관으로 자리 잡은 것들도 있으니 얼마나 감사한 일인지 모르겠다!
  • 특히 책의 뒷부분은 말 그대로 "삶의 의미" "어떻게 살아야 하는가" 등등 에 대한 철학적인 질문의 솔직한 답변들을 엿볼 수 있어서 행복했다
  • 그리고 일이 너무 많아서 (근데 그건 좋은 것이기도 하니까?) 고생한 것 외에는 문제가 없으니 좋은 해 아니겠는가


스프링 프로젝트 에러 by 노요셉 about Intellij,JDK,Spring


    XX7 by 김이삭

    • but those [that are losing them now] have to often work in fields [that might not be {what they preferred}]
    • Only during the past few decades have children vacated these natural palygrounds for their growing love affair with video games
    • So differentare are boys and girls that [the Royal Academy of Music puts them in different classes and teaches them in different ways]


    결합도와 응집도는 무엇일까? by 김태완

    • public void someMethod ( int val ) { switch ( val ) { case 0 : // do something break ; case 1 : // do something break ; default : break ; } }


    RxSwift 6의 변경사항 (What’s new in RxSwift 6) by 계주성 about Swift

    • subscribe ( onSuccess : { value in print ( "Got a value: \( value ) " ) }
    • onError : { error in // onError사용 print ( "Something went wrong: \( error ) " ) } ) // RxSwift 6 single
    • onFailure : { error in // onFailure 사용 print ( "Something went wrong: \( error ) " ) } )


    Spring Boot How To Run Application -1 내부 속으로 (WebApplicationType / SpringFactoriesLoader) by 김인회 about Spring Boot,Spring


      [백준 알고리즘] 1929번 소수 구하기 by 김성민 about 백준,Algorithm

      • num+1): if primeNumber[i] == True: for j in range(i+i
      • n+1) if primeNumber[i] == True] return result def main(): m
      • n) for i in range(len(result)): if result[i] >= m: print(result[i]) if __name__ == "__main__": main()