본문 바로가기
728x90
leetcode 452) Minimum Number of Arrows to Burst Balloons LV. Medium 🧐 https://leetcode.com/problems/minimum-number-of-arrows-to-burst-balloons/ Minimum Number of Arrows to Burst Balloons - 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 문제 There are some spherical balloons taped onto a flat wall that represents the XY-plane. The balloons.. 2022. 1. 14.
leetcode 701) Insert into a Binary Search Tree LV. Medium 🧐 https://leetcode.com/problems/insert-into-a-binary-search-tree/ Insert into a Binary Search 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 문제 You are given the root node of a binary search tree (BST) and a value to insert into the tree. Return the root node of .. 2022. 1. 12.
leetcode 1022) Sum of Root To Leaf Binary Numbers LV. Easy 😎 https://leetcode.com/problems/sum-of-root-to-leaf-binary-numbers/ Sum of Root To Leaf Binary Numbers - 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 문제 You are given the root of a binary tree where each node has a value 0 or 1. Each root-to-leaf path represents a binar.. 2022. 1. 11.
leetcode 67) Add Binary LV. Easy 😎 https://leetcode.com/problems/add-binary/ Add Binary - 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 two binary strings a and b, return their sum as a binary string. Example 1: Input: a = "11", b = "1" Output: "100" Example 2: Input: a = "1010", b = "1011" Out.. 2022. 1. 10.
leetcode 1041) Robot Bounded In Circle LV. Medium 🧐 https://leetcode.com/problems/robot-bounded-in-circle/description/ Robot Bounded In Circle - 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 문제 On an infinite plane, a robot initially stands at (0, 0) and faces north. The robot can receive one of three instructions: "G.. 2022. 1. 9.
leecode 1463) Cherry Pickup II LV. Hard 🥵 https://leetcode.com/problems/cherry-pickup-ii/ Cherry Pickup II - 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 문제 You are given a rows x cols matrix grid representing a field of cherries where grid[i][j] represents the number of cherries that you can collect from the.. 2022. 1. 8.
leetcode 382) Linked List Random Node LV. Medium 🧐 https://leetcode.com/problems/linked-list-random-node/ Linked List Random Node - 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 singly linked list, return a random node's value from the linked list. Each node must have the same probability of being chosen. .. 2022. 1. 8.
leetcode 143) Reorder List LV. Medium 🧐 https://leetcode.com/problems/reorder-list/ Reorder List - 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 문제 You are given the head of a singly linked-list. The list can be represented as: L0 → L1 → … → Ln - 1 → Ln Reorder the list to be on the following form: L0 → Ln.. 2022. 1. 6.
leetcode 231) Power of Two LV. Easy 😎 https://leetcode.com/problems/power-of-two/ Power of Two - 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 an integer n, return true if it is a power of two. Otherwise, return false. An integer n is a power of two, if there exists an integer x such that n == 2x... 2022. 1. 5.
leetcode 416) Partition Equal Subset Sum LV. Medium 🧐 https://leetcode.com/problems/partition-equal-subset-sum/ Partition Equal Subset 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 문제 Given a non-empty array nums containing only positive integers, find if the array can be partitioned into two subsets such that the.. 2022. 1. 4.
728x90