Commit 3a92c628 authored by Kittisak Maneewong's avatar Kittisak Maneewong

ส่งงาน week03

parents cc60459e 7933a27f
def value(v,p,n):
def value(v,p=4,n=3):
sign = -1 if v[0] == 1 else 1
return sign * sum([v[i] * (2 ** (p - i)) for i in range(1, p+n+1)])
def values(V,p,n):
def values(V,p=4,n=3):
v = list(map(int,V))
sign = -1 if v[0] == 1 else 1
return sign * sum([v[i] * (2 ** (p - i)) for i in range(1, p + n + 1)])
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment