Two Sum - LeetCode 1) Brute Forcetime time complexity O(n^2) class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: for i, num in enumerate(nums): rest = target - num if rest > 0: for j, num in enumerate(nums): if i!=j and num == rest: return [i, j] 2) Hash Map time complexity O(n)
오래된 메일 시스템에 맞추려고 (특히 outlook) div를 사용하지 않고 table 형태로 만든다. cell 사이 간격을 초기화 한 후 (cellspacing cellpading을 0) 스타일링을 시작한다. inline 스타일 이전에 table 속성들을 먼저 활용한다. 메일 스타일은 대부분 정해진 너비 이하로 위아래로 긴 직사각형 스타일이다. 기본 layout은 다음처럼 시작하는 것이 일반적이다. # 추가정보 react를 이용한다면 react email을 통해 쉽게 만들 수 있다. https://react.email/
What the flutter ..0 STEP 1. Install Flutter https://docs.flutter.dev/get-started/install STEP 2. Install Android Studio https://developer.android.com/studio STEP3. Install Xcode - Appstore에서 설치 (오래걸리는 경우가 종종 있다) - developer.apple.com/download/more STEP4. flutter doctor -v 공포의 flutter doctor. 앞선 모든 것을 설치 했지만 일일이 command를 입력해서 오류를 해결해야 한다. 대표적인 에러 해결방법 [!] Android toolchain Android status unknown..