Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- 알고리즘
- leetcode
- 자료형
- java
- math
- CSS
- JavaSceipt
- dynamic programming
- hash table
- Algorithm
- JavaScript
- 백준
- JS
- greedy
- 프로그래머스
- scss
- SasS
- 변수
- HTML
- string
- 컴포넌트
- 코딩테스트
- github
- sorting
- computed
- 파이썬
- 자료구조
- vue.js
- array
Archives
- Today
- Total
Posis
[LeetCode][JavaScript] 389. Find the Difference 본문
[LeetCode][JavaScript] 389. Find the Difference
문제 출처: https://leetcode.com/problems/find-the-difference/
[직접 푼 코드]
var findTheDifference = function (s, t) {
s = s.split('').sort();
t = t.split('').sort();
for (let i = 0; i < s.length; i++) {
if (s[i] != t[i]) return t[i];
}
return t[t.length - 1];
};
[문제 풀이]
1. 다른 한글자를 찾아야하기 때문에 두 문자열을 정렬합니다. (sort 메서드)
2. 반복문을 활용해 1번 문자열과 2번 문자열의 같은 자릿수에서 다른 글자가 있을 경우 그 문자를 반환합니다.
3. 1번 문자열의 길이가 0 or 1일 경우 2번 문자열의 맨뒤 글자를 반환합니다.
알고리즘 스터디: https://github.com/ROUTINE-STUDY/Algorithm
누구나 참여 가능한 알고리즘 스터디입니다.
알고리즘뿐만 아니라 개발을 하면서 겪은 이슈, 이론을 정리하는 Routine-Study를 운영 중입니다.
728x90
'알고리즘 > leetcode' 카테고리의 다른 글
[LeetCode][JavaScript] 70. Climbing Stairs (0) | 2021.07.29 |
---|---|
[LeetCode][JavaScript] 1323. Maximum 69 Number (0) | 2021.07.29 |
[LeetCode][JavaScript] 66. Plus One (0) | 2021.07.28 |
[LeetCode][JavaScript] 58. Length of Last Word (0) | 2021.07.28 |
[LeetCode][JavaScript] 860. Lemonade Change (0) | 2021.07.28 |