Skip to content

Instantly share code, notes, and snippets.

View koluku's full-sized avatar

koluku koluku

View GitHub Profile
T = int(input())
N = int(input())
As = list(map(int, input().split()))
M = int(input())
Bs = list(map(int, input().split()))
check = 0
p = 0
if N >= M:
N = int(input())
l = [int(input()) for i in range(N)]
print(min(l))
N = int(input())
l = []
for i in range(N):
l.append(int(input()))
l.sort()
print(l[0])
x, y = map(int, input().split())
print(y//x)
for ch in map(chr,[65,66,67,68]):
print(ch)
As = map(int, input().split())
print(type(As))
As = map(int, raw_input().split())
print type(As)