TIL

    [LeetCode] Path Sum

    오늘의 문제. leaf까지의 노드값 총합이, 주어진 targetSum과 같은 경우가 있는지 구하시오. Path Sum - 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 TreeNode { int val; TreeNode left; TreeNode right; TreeNode() {} TreeNode(int val) { this.val = val; } TreeNode(int val, TreeNode left, TreeNode right) { this.v..

    DOMParser - Web API

    developer.mozilla.org/ko/docs/Web/API/DOMParser DOMParser - Web API | MDN DOMParser The DOMParser 인터페이스는 DOM Document 문서에 맞는 XML 및 HTML 소스 코드를 해석할 수 있는 기반을 제공한다 . 참고: XMLHttpRequest 객체로도 인식 가능한 URL 주소로부터 직접 XML 및 HTML 문서를 developer.mozilla.org

    HTTP Methods for RESTful Services

    www.restapitutorial.com/lessons/httpmethods.html HTTP Methods for RESTful Services Below is a more-detailed discussion of the main HTTP methods. Click on a tab for more information about the desired HTTP method. The POST verb is most-often utilized to **create** new resources. In particular, it's used to create subordinate resources. Tha www.restapitutorial.com

    [LeetCode] Binary Tree Inorder Traversal

    오늘의 문제는 이진 트리 구현해보기. 전에 멘토 언니가 공부한 담에 꼭 손으로 구현해 보세요, 라고 했는데 혼자선 안 할 거 같아서 냉큼 문제로 올렸다. leetcode.com/explore/interview/card/top-interview-questions-medium/108/trees-and-graphs/786/ 처음 삽질한 흔적. 아.. 길다... public class cote0310_786_BinaryTreeInorderTraversal { //Definition for a binary tree node. public class TreeNode { int val; TreeNode left; TreeNode right; TreeNode() {} TreeNode(int val) { this.val..

    [LeetCode] Reverse String

    오늘의 문제 2. 빛줄기 언니가 다른 문제를 하나 더 내줬다. 전에 풀었던 문제랑 푸는 방법이 비슷했다. 간략하게 설명하자면 char 요소들로 이루어진 배열을 거꾸로 뒤집는 문제. 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 public class cote0309_250_principleOfRecursion_1440_ReverseString { pu..

    [LeetCode] Divisor Game

    오늘의 문제는 일종의 숫자 게임의 규칙을 알아내야 하는 문제였다. leetcode.com/problems/divisor-game/ Divisor Game - 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 /* Alice and Bob take turns playing a game, with Alice starting first. Initially, there is a number N on the chalkboard. On each player's turn, th..

    [LeetCode] Fibonacci Number

    오늘은 피보나치 배열. 재귀함수는 늘 헷갈린다. 이러는게 맞나? 이래도 되나? 그런 느낌. Fibonacci Number - 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 처음 푼 방법 - 재귀함수 써보기. 런타임이 7~8ms 나왔다. class Solution { public int fib(int n) { if(n

    How the DNS works

    코테 스터디에서 던져준 유튜브 링크

    [LeetCode] Sort Colors

    오늘의 문제는 빨강 하양 파랑의 3색을 순서대로 소팅하기. 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 아래 두 가지 추가 요건이 있었다. sort함수를 쓰지 않고 풀 수 있는가? O(1)로 풀 수 있는가? public class cote0305_sort_color { /* Given an array nums with n objects colored..

    [LeetCode] Make the string great

    오늘의 문제. 지금은 easy 단계도 헉헉거리며 풀고 있지만 언젠가는 술술 풀어나가게 되길! Make The String Great - 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 /* Given a string s of lower and upper case English letters. A good string is a string which doesn't have two adjacent characters s[i] and s[i + 1] where: 0