분류 전체보기93 2024.12.13 SQLD 취득 https://product.kyobobook.co.kr/detail/S000212021705 SQL 자격검정 실전문제 | 한국데이터산업진흥원 - 교보문고SQL 자격검정 실전문제 | - 독자대상 : SQL자격증 시험 준비생 - 구성 : SQL 자격검정 실전문제product.kyobobook.co.kr SQL 자격검정 실전문제로 2주간 공부했다. 1장, 2장만 풀면되고 3장은 시험에서 다루지않는다. 1장은 암기하면 되고 2장은 쿼리문 모르는 부분을 집중적으로 공부했다. 2회독 한 결과 1장 문제는 모두 맞았다내가 응시한 55회는 1장이 모두 노랭이 책에 있는 문제 그대로 나왔다. 2회독한 후 요약본으로 1장에서 헷갈렸던 내용을 시험보기 직전까지 반복해서 봤다.구글에 SQLD 요점정리 라고 검색하면 .. 2025. 3. 3. 리눅스 교육 1일차 (1~3장) Centos 디스크 파일 다운받기 https://www.centos.org/download/ Download - The CentOS ProjectCentOS Stream Continuously delivered distro that tracks just ahead of Red Hat Enterprise Linux (RHEL) development, positioned as a midstream between Fedora Linux and RHEL. For anyone interested in participating and collaborating in the RHEL ecosystem, Centwww.centos.org9버전 X86_64 ISOs 를 받아준다. ISO 란 CD/DVD의 데이터를 그대로.. 2025. 3. 3. [Leetcode/C#] 199. Binary Tree Right Side View 문제링크 https://leetcode.com/problems/binary-tree-right-side-view/?envType=study-plan-v2&envId=top-interview-150 199. Binary Tree Right Side View 637. Average of Levels in Binary Tree 랑 비슷한 개념이라 금방 풀 수 있었다. 637번 문제와 동일한 개념으로 풀면 되는데이 문제는 right side view 에서 봤을때 보이는 node 를 return 하면 되는 문제라서queue.Count 를 한 후 반복문 안에서 dequeue 해주고 마지막 요소일때 그 node 의 값을 result List 에 Add 해줬다. 기억하면 좋을 것 public class Solut.. 2024. 8. 17. [Leetcode/C#] 637. Average of Levels in Binary Tree 문제링크 https://leetcode.com/problems/average-of-levels-in-binary-tree/?envType=study-plan-v2&envId=top-interview-150 637. Average of Levels in Binary Tree 기억하면 좋을 것 public class Solution { Queue queue = new Queue(); List result = new List(); int sumInSameLevel = 0; int cntInSameLevel = 0; public IList AverageOfLevels(TreeNode root) { queue.Enqueue(root); traverse(.. 2024. 8. 17. 이전 1 2 3 4 ··· 24 다음