벡터
벡터의 해석 벡터의 내적(스칼라곱) $ \overrightarrow{A}\cdot \overrightarrow{B}=\left| \overrightarrow{A}\right| \left| \overrightarrow{B}\right| \cos \theta $ $ (i\cdot i=j\cdot j=k\cdot k=\left| i\right| \lef...
벡터의 해석 벡터의 내적(스칼라곱) $ \overrightarrow{A}\cdot \overrightarrow{B}=\left| \overrightarrow{A}\right| \left| \overrightarrow{B}\right| \cos \theta $ $ (i\cdot i=j\cdot j=k\cdot k=\left| i\right| \lef...
벡터의 해석 진공 중의 정전계 진공 중의 도체계 유전체 전기영상법 전류 진공 중의 정자계 자성체와 자기회로 전자유도 인덕턴스 전자계
전자기학 벡터의 해석 진공 중의 정전계 진공 중의 도체계 유전체 전기영상법 전류 진공 중의 정자계 자성체와 자기회로 전자유도 인덕턴스 전자계 전력공학 전선로 선로정수와 코로나 송전 선로 특성값 계산 안정도 고장계산 중성점 접지 방식 이상전압 유도장해 배전공학 배전계산 ...
LeetCode 70. Climbing Stairs 원문 You are climbing a staircase. It takes n steps to reach the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top? ...
LeetCode 64. Minimum Path Sum 원문 Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right, which minimizes the sum of all numbers along its path. Note: You c...
LeetCode 100. Same Tree 원문 Given the roots of two binary trees p and q, write a function to check if they are the same or not. Two binary trees are considered the same if they are structurally id...
LeetCode 433. Minimum Genetic Mutation 원문 A gene string can be represented by an 8-character long string, with choices from 'A', 'C', 'G', and 'T'. Suppose we need to investigate a mutation from ...
LeetCode 274. H-Index 원문 Given an array of integers citations where citations[i] is the number of citations a researcher received for their ith paper, return the researcher’s h-index. According t...
LeetCode 547. Number of Provinces 원문 There are n cities. Some of them are connected, while some are not. If city a is connected directly with city b, and city b is connected directly with city c, ...
LeetCode 47. Permutations II 원문 Given a collection of numbers, nums, that might contain duplicates, return all possible unique permutations in any order. 풀이 백트래킹. nums를 오름차순으로 정렬한다. 지금까지 추가...