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
- 백준
- computed
- math
- 자료구조
- JavaSceipt
- sorting
- hash table
- Algorithm
- HTML
- github
- vue.js
- JavaScript
- java
- dynamic programming
- greedy
- 자료형
- 컴포넌트
- leetcode
- 알고리즘
- CSS
- SasS
- string
- 코딩테스트
- JS
- array
- 변수
- scss
- 파이썬
Archives
- Today
- Total
Posis
[LeetCode][JavaScript] 1323. Maximum 69 Number 본문
[LeetCode][JavaScript] 1323. Maximum 69 Number
문제 출처: https://leetcode.com/problems/maximum-69-number/
[직접 푼 코드]
var maximum69Number = function(num) {
var str = num.toString();
var res = str.replace('6','9');
return Number(res);
};
[문제 풀이]
1. number타입의 파라미터를 string타입으로 변환합니다. (toString 메서드)
2. 6을 9로 바꿔서 가장 큰 수를 찾아야 하기 때문에 제일 앞에 있는 6을 9로 바꿔줍니다. (replace 메서드)
알고리즘 스터디: https://github.com/ROUTINE-STUDY/Algorithm
누구나 참여 가능한 알고리즘 스터디입니다.
알고리즘뿐만 아니라 개발을 하면서 겪은 이슈, 이론을 정리하는 Routine-Study를 운영 중입니다.
728x90
'알고리즘 > leetcode' 카테고리의 다른 글
[LeetCode][JavaScript] 1436. Destination City (0) | 2021.07.29 |
---|---|
[LeetCode][JavaScript] 70. Climbing Stairs (0) | 2021.07.29 |
[LeetCode][JavaScript] 389. Find the Difference (0) | 2021.07.29 |
[LeetCode][JavaScript] 66. Plus One (0) | 2021.07.28 |
[LeetCode][JavaScript] 58. Length of Last Word (0) | 2021.07.28 |