Home
My Technical Diary
Cancel

LeetCode - 520. Detect Capital

520. Detect Capital - easy 문제 Given a word, you need to judge whether the usage of capitals in it is right or not. We define the usage of capitals in a word to be right when one of the followi...

LeetCode - 662. Maximum Width of Binary Tree

662. Maximum Width of Binary Tree - medium 문제 Given a binary tree, write a function to get the maximum width of the given tree. The maximum width of a tree is the maximum width among all levels...

LeetCode - 1480. Running Sum of 1d Array

1480. Running Sum of 1d Array - easy 문제 Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n] in...

LeetCode - 448. Find All Numbers Disappeared in an Array

448. Find All Numbers Disappeared in an Array - easy 문제 Given an array nums. We define a running sum of an array as runningSum[i] = sum(nums[0]…nums[i]). Return the running sum of nums. 제한사항 ...

LeetCode - 797. All Paths From Source to Target

797. All Paths From Source to Target - medium 문제 Given a directed, acyclic graph of N nodes. Find all possible paths from node 0 to node N-1, and return them in any order. The graph is given ...

Chromium - Getting Around the Chromium Source Code Directory Structure

Getting Around the Chromium Source Code Directory Structure High-level overview Chromium is separated into two main parts (excluding other libraries): the browser and the renderer (which includes...

LeetCode - 79. Word Search

79. Word Search - medium 문제 Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell, where “adjacent” cells are...

Chromium - Multi-process Architecture

Multi-process Architecture This document describes Chromium’s high-level architecture. Problem 절대 Crash 나 hang이 발생하지 않는 Rendering engine을 구성하는것은 거의 불가능 하다. 완벽하게 안전한 Rendering engine을 구성하는 것 또한 거...

Chromium - Multi-process Architecture

Multi-process Architecture This document describes Chromium’s high-level architecture. Problem 절대 Crash 나 hang이 발생하지 않는 Rendering engine을 구성하는것은 거의 불가능 하다. 완벽하게 안전한 Rendering engine을 구성하는 것 또한 거...

LeetCode - 151. Reverse Words in a String

151. Reverse Words in a String - medium 문제 Given an input string, reverse the string word by word. 제한사항 A word is defined as a sequence of non-space characters. Input string may contain ...