Commit d5420637 authored by Kittisak Maneewong's avatar Kittisak Maneewong

ส่งงาน Week03

parents ec4625d9 96ab5773
def value(v,p,n):
sign = -1 if v[0] == 1 else 1
return sign * sum([v[i] * (2 ** (p - i)) for i in range(1, p+n+1)])
v = [1, 0,0,1,1,1, 0,0,1,0]
print(v)
print(value(v,5,4))
def values(V,p,n):
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)])
v = [1, 0,0,1,1,1, 0,0,1,0]
print(v)
print(values("1001110010",5,4))
\ 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