프로그래머스 Lv1. 핸드폰 번호 가리기
문제
접근
문자열 슬라이싱
코드
python
def solution(phone_number):
star = "*" * len(phone_number[0:-4])
return star + phone_number[-4:]
js
function solution(phone_number) {
let star = ""
const starLen = phone_number.slice(0, -4).length;
for(var i=0; i<starLen; i++){
star += "*"
}
return star + phone_number.slice(-4);
}
def solution(phone_number):
star = "*" * len(phone_number[0:-4])
return star + phone_number[-4:]
function solution(phone_number) {
let star = ""
const starLen = phone_number.slice(0, -4).length;
for(var i=0; i<starLen; i++){
star += "*"
}
return star + phone_number.slice(-4);
}
python 슬라이싱
phone_number = "01012345678"
phone_number[0:-4]
# "0101234"
phone_number[-4:]
# 5678
js 슬라이싱
const a = "0123456789"
a.slice(0,8)
// "01234567"
a.slice(8)
// "89"
a.slice(0, -5)
// "01234"
a.slice(-5)
// "56789"
a.slice(-5, 9)
// "5678"
a.slice(5, -1)
// "5678"
a.slice(5, -2)
// "567"
a.slice(5, -4)
// "5"
a.slice(5, -5)
// ""
Author And Source
이 문제에 관하여(프로그래머스 Lv1. 핸드폰 번호 가리기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ryong9rrr/프로그래머스-Lv1.-핸드폰-번호-가리기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)