본문 바로가기
728x90
leetcode 1345) Jump Game IV LV. Hard 🥵 https://leetcode.com/problems/jump-game-iv/ Jump Game IV - 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 array of integers arr, you are initially positioned at the first index of the array. In one step you can jump from index i to index: i + 1 where: i + 1 .. 2022. 1. 18.
leetcode 8) String to Integer (atoi) LV. Medium 🧐 https://leetcode.com/problems/string-to-integer-atoi/description/ String to Integer (atoi) - 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 문제 Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++'s atoi function.. 2022. 1. 14.
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.
728x90