일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Data Engineering
- Python
- Apache Spark
- DP
- 빅데이터
- 알고리즘
- 아파치 스파크
- 파이썬
- Hadoop
- 도커
- 아파치 하둡
- 코딩테스트
- leetcode
- 딕셔너리
- docker
- 하둡
- programmers
- 티스토리챌린지
- Spark
- 우선순위큐
- 스파크
- 분산처리
- heapq
- 분산
- Apache Hadoop
- 오블완
- 프로그래머스
- 리트코드
- 이진탐색
- 데이터 엔지니어링
- Today
- Total
목록2025/01/02 (2)
래원
난이도: Medium 문제 설명You are given a 0-indexed array of strings words and a 2D array of integers queries. Each query queries[i] = [l_i, r_i] asks us to find the number of strings present in the range li to ri (both inclusive) of words that start and end with a vowel. Return an array ans of size queries.length, where ans[i] is the answer to the ith query. Note that the vowel letters are 'a', 'e', 'i'..
난이도: Easy 문제 설명Given a string s of zeros and ones, return the maximum score after splitting the string into two non-empty substrings (i.e. left substring and right substring). The score after splitting a string is the number of zeros in the left substring plus the number of ones in the right substring. 문제 예제Example 1:Input: s = "011101"Output: 5 Explanation: All possible ways of splitting s into..