본문 바로가기

분류 전체보기240

[서울/합정] 채선당 샤브보트 합정딜라이트점 코로나 시대 1인샤브샤브 후기 [서울/합정] 채선당 샤브보트 합정딜라이트점 코로나 시대 1인샤브샤브 후기 안녕하세요~ 오늘은 샤브샤브가 먹고 싶어서 합정 딜라이트점에 있는 채선당 샤브보트에 다녀왔습니다. 요즘 코로나 때문에 단체로 밥도 먹기 힘들고 집에서 밥 먹기는 귀찮고 그렇잖아요?! 혼자서 해 먹기는 힘든 샤브샤브가 당길 때 종종 가는 곳입니다. 채선당은 어디든 가도 평타는 치는 것 같아서요~ 여기 샤브샤브 메뉴는 소고기샤브, 소고기토마토샤브, 소고기커리샤브, 마라탕샤브, 한우샤브가 있습니다. 제일 싼 메뉴는 10,900원부터 16,900원까지 있는데요~ 프리미엄 한우가 먹고 싶은 분은 한우샤브를 시키시면 될 것 같습니다~ 저는 그냥 소고기커리샤브를 궁금해서 시켜봤어요! 카레 육수를 바로 준비해 주시더라고요! 고기랑 야채도 바로바.. 2022. 1. 24.
[Kotlin] Leetcode 189. Rotate Array Problem 배열이 주어졌을 때, 배열을 오른쪽으로 k번 회전시킵니다. 여기서 k는 음수가 아닙니다. Example 1: Input: nums = [1,2,3,4,5,6,7], k = 3 Output: [5,6,7,1,2,3,4] Explanation: rotate 1 steps to the right: [7,1,2,3,4,5,6] rotate 2 steps to the right: [6,7,1,2,3,4,5] rotate 3 steps to the right: [5,6,7,1,2,3,4] Example 2: Input: nums = [-1,-100,3,99], k = 2 Output: [3,99,-1,-100] Explanation: rotate 1 steps to the right: [99,-1,-.. 2022. 1. 24.
[Kotlin] Leetcode 977. Squares of a Sorted Array Problem Given an integer array nums sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order. Example 1: Input: nums = [-4,-1,0,3,10] Output: [0,1,9,16,100] Explanation: After squaring, the array becomes [16,1,0,9,100]. After sorting, it becomes [0,1,9,16,100]. Example 2: Input: nums = [-7,-3,2,3,11] Output: [4,9,9,49,121] Constraints: 1 abs(nu.. 2022. 1. 24.
[Kotlin] Leetcode 35. Search Insert Position Problem Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order. You must write an algorithm with O(log n) runtime complexity. Example 1: Input: nums = [1,3,5,6], target = 5 Output: 2 Example 2: Input: nums = [1,3,5,6], target = 2 Output: 1 Example 3: Input: nums = [1,3,5,6], ta.. 2022. 1. 24.
300x250