본문 바로가기

분류 전체보기41

리눅스마스터 2급 2차 합격 후기! 2023년 3월 11일 제 2301회 리눅스마스터 2급 2차 시험을 봤다. 준비 기간은 넉넉하게 1달? 정말 빡세게 한건 일주일이었다. 시험장에 가면 저런 시험지와 OMR카드를 준다. 준비물: 컴싸, 볼펜, 신분증, 수검표 수검표는 따로 출력 안해갔고, 핸드폰에 캡쳐해놓은 것이 있었는데, 핸드폰 꺼야되니까 포스트잇을 주시면서 수험번호 미리 적어놓으라고 하셨다. 그리고 컴싸 없는 사람 있으면 빌려준다고도 하셨다. 나는 그것도 모르고 시험 시작 30분전에 마트에서 300원 주고 샀다 ㅋㅋ 준비한대로 아는 것도 많이 나왔고 보기 4개중에 2개가 뭐가 정답인지 헷갈리는 것도 많았다.. 준비 부족이었나보다.. 100분 시험에 80문제이다! 준비과정은 이렇다. 먼저, 이기적 출판사에 있는 책을 샀다. 굳이 필요 없.. 2023. 3. 16.
[LeetCode] 1026. Maximum Difference Between Node and Ancestor (Python) 1026번 문제링크 https://leetcode.com/problems/maximum-difference-between-node-and-ancestor/description/ Maximum Difference Between Node and Ancestor - 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 문제설명 입력: TreeNode 출력: 정수값 트리의 같은 path에서 값이 가장 큰 것과 작은 것의 차이를 구하는 문제 *같은 path란 - 같은 조상을 가.. 2022. 12. 9.
[LeetCode] 623. Add One Row to Tree (Python) 623번 문제 링크 https://leetcode.com/problems/add-one-row-to-tree/ Add One Row to Tree - 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 문제설명 입력: root (TreeNode), val(int), depth (int) 출력: depth 깊이에 val 값이 추가된 root 트리 * depth가 1이라면 root자리에 node를 추가하고 원래 tree를 새 node의 left subtree로 오게하기 .. 2022. 10. 5.
[LeetCode] 1578. Minimum Time to Make Rope Colorful (Python) 1578번 문제 링크 https://leetcode.com/problems/minimum-time-to-make-rope-colorful/ Minimum Time to Make Rope Colorful - 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 문제설명 입력: colors 문자열, neededTime 정수 배열 출력: 풍선제거 최소시간 Alice는 같은 색깔의 풍선이 2개 이상 연속되는 것을 싫어한다고 한다. (성질 머리 하고는..) Bob에게 연속된 풍.. 2022. 10. 4.