Commit cc60459e authored by Kittisak Maneewong's avatar Kittisak Maneewong

ส่งงาน week03

parents c54f5a71 5a7287fb
......@@ -2,14 +2,7 @@ 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
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