일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 안양고기
- 코딩테스트
- 제주볼거리
- 삼성맛집
- 릿코드
- 구글릿코드
- 인덕원카페
- 인덕원맛집
- 제주맛집
- 코테사이트
- 알고리즘
- 프로그래머스
- 안양맛집
- 제주놀거리
- 인덕원존맛
- 인덕원고기집
- 평촌카페
- 삼성역맛집
- 개발자알고리즘
- 강남역맛집
- 애플릿코드
- 프로그래머스코딩테스트
- 인덕원역맛집
- 아마존릿코드
- 내돈내산
- 알고리즘해시
- 개발자취업
- 코딩테스트사이트
- 인덕원고기
- 코딩테스트사이트추천
- Today
- Total
목록애플릿코드 (5)
민여위-
1. 문제설명 Given a fixed-length integer array arr, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements beyond the length of the original array are not written. Do the above modifications to the input array in place and do not return anything. Example 1: Input: arr = [1,0,2,3,0,4,5,0] Output: [1,0,0,2,3,0,0,4] Explanation: After calling your function, ..
1. 문제설명 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
1. 문제설명 Given an array nums of integers, return how many of them contain an even number of digits. Example 1: Input: nums = [12,345,2,6,7896] Output: 2 Explanation: 12 contains 2 digits (even number of digits). 345 contains 3 digits (odd number of digits). 2 contains 1 digit (odd number of digits). 6 contains 1 digit (odd number of digits). 7896 contains 4 digits (even number of digits). Therefo..
1. 문제설명 Given a binary array nums, return the maximum number of consecutive 1's in the array. Example 1: Input: nums = [1,1,0,1,1,1] Output: 3 Explanation: The first two digits or the last three digits are consecutive 1s. The maximum number of consecutive 1s is 3. Example 2: Input: nums = [1,0,1,1,0,1] Output: 2 Constraints: 1

개발자로 취업하기 위해 이젠 거의 필수코스로 자리잡은 코딩테스트가 있다. 어떤 직군은 특정 전문 자격증으로 스펙을 대변하고, 또 다른 직군은 포트폴리오 등 자신을 PR하기 위한 여러가지 수단이 있는데 개인적인 생각으로는 지금 현 시점에서 개발자에게 취업전선에서 가장 필요한 어학, 코딩테스트, 커뮤니케이션 능력 요 3가지인 것 같다. 고등학교 졸업하고 첫 회사 취업 후 1번의 이직이 있었다. 월급을 받으며 개발자로서 일을 하고 있어도 늘 내가 부족하다는 생각을 저버릴 수가 없었는데, 평일에 시간이 부족하단 핑계로 미루고 미루던 걸 시작하려고 한다. 맨 처음 릿코드를 접했을 때 뭐 어떤 것부터 해야할 질 몰라서 헤매었던 걸 정리해두고자 하는 포스팅 ~_~ 1. 회원가입 https://leetcode.com/..