본문 바로가기
728x90
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.
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.
leetcode 221) Maximal Square LV. Medium 🧐 https://leetcode.com/problems/maximal-square/ Maximal Square - 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 m x n binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. Example 1: Input: matrix = [["1","0".. 2022. 1. 4.
leetcode 790) Domino and Tromino Tiling LV. Medium 🧐 https://leetcode.com/problems/domino-and-tromino-tiling/ Domino and Tromino Tiling - 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 have two types of tiles: a 2 x 1 domino shape and a tromino shape. You may rotate these shapes. Given an integer n, return the nu.. 2022. 1. 2.
728x90