We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6f83dd commit d6ca944Copy full SHA for d6ca944
Level_1/핸드폰 번호 가리기/main.py
@@ -0,0 +1,6 @@
1
+def solution(phone_number):
2
+ str_list = list(phone_number)
3
+ #함수를 완성해 별이를 도와주세요
4
+ for i in range(len(phone_number)-4):
5
+ str_list[i] = '*'
6
+ return "".join(str_list)
0 commit comments