Leetcode 279

[Array/String][Easy] 345. Reverse Vowels of a String

https://leetcode.com/problems/reverse-vowels-of-a-string Reverse Vowels of a String - LeetCode Can you solve this real interview question? Reverse Vowels of a String - Given a string s, reverse only all the vowels in the string and return it. The vowels are 'a', 'e', 'i', 'o', and 'u', and they can appear in both lower and upper cases, more than onc leetcode.com Q. input string s를 입력으로 받을때, 모음문자..

Leetcode/LeetCode75 2023.11.26

[Array/String][Easy] 605. Can Place Flowers

https://leetcode.com/problems/can-place-flowers Can Place Flowers - LeetCode Can you solve this real interview question? Can Place Flowers - You have a long flowerbed in which some of the plots are planted, and some are not. However, flowers cannot be planted in adjacent plots. Given an integer array flowerbed containing 0's and 1' leetcode.com Q. 각 자리가 1일때 flow가 planted되어 있고, 0이면 그렇지 않다. flower..

Leetcode/LeetCode75 2023.11.25

[Array/String][Easy] 1431. Kids With the Greatest Number of Candies

https://leetcode.com/problems/kids-with-the-greatest-number-of-candies Kids With the Greatest Number of Candies - LeetCode Can you solve this real interview question? Kids With the Greatest Number of Candies - There are n kids with candies. You are given an integer array candies, where each candies[i] represents the number of candies the ith kid has, and an integer extraCandie leetcode.com Q. 배열..

Leetcode/LeetCode75 2023.11.25

[Array/String][Easy] 1768. Merge Strings Alternately

Q. word1과 word2를 하나 씩 merge하라. 문제 그대로 연산하여 merge하면 됨. string mergeAlternately(string word1, string word2) { int p1 = 0, p2 = 0; string ret = ""; while (p1 < word1.length() || p2 < word2.length()) { if (p1 < word1.length()) ret += word1.at(p1++); if (p2 < word2.length()) ret += word2.at(p2++); } return ret; } Key : 사고과정을 플밍 구현으로 실현 여부 테스팅. Comment : 그냥 프로그램 단순 능력 테스팅.... 리트코드에 잘 없는 함정없이 쉬운 문제.

Leetcode/LeetCode75 2023.11.24

Array - Rotate Array

https://leetcode.com/explore/interview/card/top-interview-questions-easy/92/array/646/ 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 Note : 오른쪽으로 k 만큼 회전시켜라. in-place로 해 보라. Try1. 추가 메모리 사용 ... 할만 하지만 in-place가 아니다. i..

Array - Best Time to Buy and Sell Stock II

https://leetcode.com/explore/interview/card/top-interview-questions-easy/92/array/564/ 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 Note : 한번에 두개를 동시에 살 수 없다. Solution : 결국 비쌀때 샀다, 쌀때 팔면 되는 것인데, 구간별 누적합이, 전체 최대차의 합과도..

Array - Remove Duplicates from Sorted Array

https://leetcode.com/explore/interview/card/top-interview-questions-easy/92/array/727/ 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 Notes 정렬된 배열이 인풋임. 추가 메모리 공간을 사용하면 안됨. 배열 길이를 직접 수정하는 것이 아니고, 배열을 수정하고 바르게 읽기 위해 길이 ..