본문 바로가기
728x90
leetcode 228) Summary Ranges LV. Easy 😎 https://leetcode.com/problems/summary-ranges/ Summary Ranges - 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 sorted unique integer array nums. Return the smallest sorted list of ranges that cover all the numbers in the array exactly. That is, each el.. 2022. 2. 28.
leetcode 165) Compare Version Numbers LV. Medium 🧐 https://leetcode.com/problems/compare-version-numbers/ Compare Version 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 문제 Given two version numbers, version1 and version2, compare them. Version numbers consist of one or more revisions joined by a dot '.'. Eac.. 2022. 2. 25.
leetcode 148) Sort List LV. Medium 🧐 https://leetcode.com/problems/sort-list/ Sort 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 문제 Given the head of a linked list, return the list after sorting it in ascending order. Example 1: Input: head = [4,2,1,3] Output: [1,2,3,4] Example 2: Input: head = [.. 2022. 2. 24.
leetcode 133) Clone Graph LV. Medium 🧐 https://leetcode.com/problems/clone-graph/ Clone Graph - 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 reference of a node in a connected undirected graph. Return a deep copy (clone) of the graph. Each node in the graph contains a value (int) and a list (L.. 2022. 2. 23.
[한빛 미디어] 이것이 안드로이드다 with 코틀린(개정 3판) "한빛미디어 활동을 위해서 책을 제공받아 작성된 서평입니다." 저는 안드로이드 애플리케이션을 자바로만 개발을 해봤습니다. 그러나 요즘 기업 기술 스택을 보니 코틀린을 많이 선호하는 것 같았습니다. 그래서 코틀린이 무슨 언어이고, 안드로이드 앱을 어떻게 개발하는지 궁금해져 이 책을 읽게 되었습니다. "이것이 안드로이드다 with 코틀린"은 1판, 2판, 3판으로 이루어져 있습니다. 개정 몇 판을 보면 좋을지 고민이 되어 목차를 확인해봤는데, 1판 2판 3판의 내용이 이어져 있는 것이 아니라 다 안드로이드의 구조부터 설명이 되어 있었습니다. 저는 3판의 실습 내용이 더 맘에 들어 3판으로 결정하게 되었습니다! 다른 분들도 1판 2판 3판의 실습 예제를 보고 더 맘에 드는 책을 잘 고르셨으면 좋겠어요ㅎㅎㅎ 저.. 2022. 2. 23.
leetcode 171) Excel Sheet Column Number LV. Easy 😎 https://leetcode.com/problems/excel-sheet-column-number/ Excel Sheet Column 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 문제 Given a string columnTitle that represents the column title as appear in an Excel sheet, return its corresponding column number. For ex.. 2022. 2. 22.
leetcode 169) Majority Element LV. Easy 😎 https://leetcode.com/problems/majority-element/ Majority Element - 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 nums of size n, return the majority element. The majority element is the element that appears more than ⌊n / 2⌋ times. You may assume that.. 2022. 2. 21.
leetcode 1288) Remove Covered Intervals LV. Medium 🧐 https://leetcode.com/problems/remove-covered-intervals/ Remove Covered Intervals - 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 intervals where intervals[i] = [li, ri] represent the interval [li, ri), remove all intervals that are covered by anothe.. 2022. 2. 20.
leetcode 1675) Minimize Deviation in Array LV. Hard 🥵 https://leetcode.com/problems/minimize-deviation-in-array/ Minimize Deviation in Array - 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 an array nums of n positive integers. You can perform two types of operations on any element of the array any number .. 2022. 2. 19.
leetcode 402) Remove K Digits LV. Medium 🧐 https://leetcode.com/problems/remove-k-digits/ Remove K Digits - 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 string num representing a non-negative integer num, and an integer k, return the smallest possible integer after removing k digits from num. Exampl.. 2022. 2. 18.
728x90