Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 피보나치 함수
- Max Array Sum
- 격파르타 합격후기
- 격파르타 후기
- 구슬탈출2
- Interview Preparation Kit
- candies
- 파이썬
- Reverse Shuffle Merge
- 매칭점수
- 백준
- hackerrank
- Roads and Libraries
- Find the nearest clone
- Algorithm
- 격파르타 장점
- 프로그래머스
- 알고리즘
- BFS: Shortest Reach in a Graph
- 해커랭크
- [sqld]자격증합격
- programmers
- 코딩테스트
- 야근지수
- Common Child
- Recursion: Davis' Staircase
- Special String Again
- DFS: Connected Cell in a Grid
- python
- 머신러닝
Archives
- Today
- Total
목록abbreviation (1)
Archive

https://www.hackerrank.com/challenges/abbr/problem Abbreviation | HackerRank Make two strings equal www.hackerrank.com 풀이 두 개의 문자열 a, b를 입력받음. 문자열 a를 다음 두 가지 방법을 사용해 문자열 b를 만들 수 있으면 "YES"를, 아니면 "NO"를 출력하는 문제 문자열 a의 소문자를 대문자로 0개 이상 바꿀 수 있음. 문자열 a의 소문자를 모두 제거. a = AbcDE, b = ABDE일 때, ABcDE로 b -> B로 바꾼 뒤, 소문자를 모두 제거하면 ABDE가 되므로 b를 만들 수 있음. Dynamic programming을 사용해서 품. 처음에는 대소문자 상관없이 a의 j번째 문자열 = b의..
공부/Algorithm
2020. 9. 1. 15:34