[TIL] 20201203

todo

What I learned

  • BST (이진탐색트리) 외쪽 트리 키 값 < 루트 트리 키 값 < 오른쪽 트리 키 값
  • array.size
  • array의 부분 복사: copyOfRange
    fun <T> Array<T>.copyOfRange(
      fromIndex: Int, 
      toIndex: Int
    ): Array<T>
    
  • WebViewClient onReceivedError() - 웹 리소스(메인 페이지 및 iframe, img 등) 오류 콜백.

Tags:

Categories:

Updated:

Leave a comment