Skip to content

Commit

Permalink
[UPD] Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
tony9402 authored Nov 29, 2021
1 parent 3b84751 commit f21577a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions solution/binary_search/1477/main.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
# Authored by : yj2221
# Co-authored by : tony9402
# Link : http://boj.kr/3fe7ddd4b0c2437882109089a41a0349
# Co-authored by : -
# Link : http://boj.kr/b93ed1e8f2a7413fa8fe39483692604f

import sys

def input():
return sys.stdin.readline().rstrip()

n, m, l = map(int, input().split())
rests = [0] + list(map(int, input().split())) + [l]
rests.sort()
rests = sorted([0] + list(map(int, input().split())) + [l])

low = 1
high = l
Expand Down

0 comments on commit f21577a

Please sign in to comment.