본문 바로가기

전체 글

(113)
캐나다 Federal / Provincial Tax Brackets 연방 및 지방 세율 💸 (온타리오 기준, 세금) 요즘 택스 리턴 기간이라 바쁘시죠~ 그래서 오늘은 캐나다의 federal/provincial 세금에 관한 포스팅을 들고 왔습니다. 캐나다라고 하면 복지 혜택이 좋은 만큼 국민들에게 엄청난 세금을 부과하는 나라로도 유명한데요. 자세히 찾아보니 cra에서는 인컴에 proportional 하게 세금을 부과하기 때문에 생각보다 그렇게 사악한 것 같지는 않습니다. 🤐 Federal and Provincial tax brackets Federal tax bracket Federal tax rates Ontario tax bracket Ontario tax rates $48,535 or less 15.00% $44,740 or less 5.05% $48,536 to $97,069 20.50% $44,741 to $8..
캐나다 영주권 신청 비용 정리💰 (2021.02 EE 기준) 오늘은 캐나다 영주권을 신청할 때 드는 비용에 대해서 정리해보겠습니다! 제가 사실 2020년 초부터 주식 투자를 시작했는데 돈을 딱히 다른 데다 쓴 적이 없는데도 주식계좌에 돈이 생각보다 별로 없더라고요 ㅋㅋ 아낀다 해도 또 정신 차려 보니 돈이 다 어디로 가는지 모르겠네요. 올해는 좀 더 아껴봐야겠습니다! 자 그럼 시작해볼까요~ 1. 영어 시험 316.40불 2. 학력 인증 242.95불 (+23불 우편 배송비) 3. 신체검사 240불 (지역 또는 기관마다 다름. 토론토 노스욕 기준) 4. PR 신청비 825불 (2021년 2월 기준) 5. 랜딩비 500불 (2021년 2월 기준) 계산해 보니 2,147.35불 정도가 소요되네요. 다들 참고하셔서 미리 잘 준비하시길 바랍니다~
캐나다 영주권 가성비 최강 루트 (EE, Express Entry) 안녕하세요 :) 최근에 EE CEC 카테고리 드로우가 있었습니다. 프로필을 미리 만들어두신 분들은 다들 인비테이션을 발급받으셨을 거라고 생각이 되는데요! 그럼 오늘은 그 EE가 도대체 뭔지에 대해서 설명을 해볼까 합니다. EE란 Express Entry의 줄임말로 급행 이민이라는 뜻입니다. 다른 이민 카테고리들과 비교하여 프로세싱 기간이 짧은 것이 특징으로 최근 많은 이민자들이 이 카테고리를 통해서 영주권에 지원하는 추세입니다. Express Entry Program 자격요건 연방경험이민 (CEC) 1년 이상 풀타임 근무 (1,560 시간 /1년 , 창업 학생코업 불포함), NOC의 0/A/B 직군에 종사하여야함. NOC 0/A 는 CLB7, NOCB 는 CLB5. 연방전문인력이민 (FSW) 10년 이내..
캐나다에 살면 좋은 점 4가지 워킹홀리데이 프로그램을 통해서 캐나다에 입국하고 여기서 산 지가 어느새 2년이 되어간다. (항상 느끼는 거지만 시간은 정말 쏜살같다😢) 그럼 오늘은 2년 동안 캐나다에서 느낀 좋은 점들을 정리해보려 한다. 1. 미국 주식을 쉽게 사고팔 수 있다. 취업을 하고 나서 자연스럽게 재테크에 관심을 가지게 되었다. 퀘스트레이드라는 브로커리지에서 주식 계좌를 오픈하고 주식을 시작한 게 2019년 말 정도니까 주식 거래를 한지 거의 1년 정도 되었다. 계좌를 오픈하고 놀랐던 게 계좌 안에 캐나다 달러와 미국 달러가 계좌에 따로 표기가 되어있던 점이다. 캐나다 주식을 사면 캐나다 달러를 차감하고 미국 주식을 사면 미국 달러를 차감하는데 만약 미국 달러가 없으면 캐나다 달러를 자동으로 환전해서 (환전 수수료는 보통 2%..
53. Maximum Subarray 풀이 leetcode.com/problems/maximum-subarray/ Maximum Subarray - 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 # Greedy class Solution: def maxSubArray(self, nums: List[int]) -> int: if not nums : return 0 curr_max = output = nums[0] for i in range(1, len(nums)) : curr_max = max(curr_m..
139. Word Break 풀이 leetcode.com/problems/word-break/ Word Break - 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 class Solution: def wordBreak(self, s: str, wordDict: List[str]) -> bool: if not s or not wordDict : return False words = set(wordDict) n = len(s) dp = [False]*(n+1) dp[0] = True for end ..
5. Longest Palindromic Substring 풀이 leetcode.com/problems/longest-palindromic-substring/ Longest Palindromic Substring - 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 문제 : 가장 긴 palindromic 한 문자열을 리턴하는 것. 풀이 : 첫 번째는 인덱스를 하나하나 늘려가면서 왼쪽과 오른쪽으로 expanding 해 나가는 방법이 있다. 이때 주의해야 할 점은 palindrome의 길이가 홀수인지 짝수인지 알 수 없기 때문에 두..
[October LeetCoding Challenge] 29th - Maximize Distance to Closest Person leetcode.com/explore/challenge/card/october-leetcoding-challenge/563/week-5-october-29th-october-31st/3512/ Explore - LeetCode LeetCode Explore is the best place for everyone to start practicing and learning on LeetCode. No matter if you are a beginner or a master, there are always new topics waiting for you to explore. leetcode.com class Solution: def maxDistToClosest(self, seats: List[int]) ->..