Skip to content

Commit b16f34a

Browse files
author
hangyeol
committed
89차 3번 문제풀이
1 parent e88c074 commit b16f34a

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

live8/test89/문제3/백한결.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
def solution(numbers):
2+
answer = ""
3+
str_array = []
4+
cal_array = []
5+
6+
for i in numbers:
7+
str_array.append(str(i))
8+
9+
for i in range(len(str_array)):
10+
for j in range(i + 1, len(str_array)):
11+
cal_array.append(str_array[i] + str_array[j])
12+
13+
return answer

0 commit comments

Comments
 (0)