Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongMinR committed May 10, 2024
1 parent 5b5ad81 commit 28b5a6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion JMRYU/1to10/02.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def solution(lst) :
a = list(set(lst))
a.sort(reverse = True)
return a
return a
2 changes: 1 addition & 1 deletion JMRYU/1to10/03.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ def solution(number):
for p in range (s +1, len(number)):
a.append(number[s] + number[p])
a = sorted(set(a))
return a
return a
2 changes: 1 addition & 1 deletion JMRYU/1to10/04.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def solution(a):
for b, s in enumerate(score):
if s == maxs:
ms.append(b+1)
return ms
return ms

0 comments on commit 28b5a6f

Please sign in to comment.