본문 바로가기

개발공부3

#leetcode - Add Two Numbers Add Two Numbers - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a li.. 2022. 1. 27.
#leetcode - Two Sum Two Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element t.. 2022. 1. 27.
기초내용 정리 아주 오래 전 과외하며 배웠던 내용들 리마인드하며 정리해보..자... Browser Browser는 x축 y축으로 인식하며 HTML, Stylesheets를 해석 후 HTML 문서의 해석이 끝나면 DOM tree를 만들고, Stylesheets 문서의 해석이 끝나면 스타일 규칙을 만든다. DOM tree와 스타일 규칙을 합쳐서 Render tree 생성, 기본적으로 최초 한번 실행이 되고 이후 요소들의 레이아웃에 영향을 주는 변화가 생기면 다시 Render tree를 구성 이 때, reflow가 수행되어 각각 요소들의 레이아웃을 위치 시킴. Render tree가 탐색 되고 paint method가 호출 되어 UI 기바느이 구성요소를 사용하여 그림. 수정사항이 생기면 Repaint 수행 Repaint [.. 2022. 1. 23.