Commit 6b1e8c31 authored by Narumon Mokpha 's avatar Narumon Mokpha

ส่งงานค่ะ

parent 66560af5
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))])
return sign*sum([v[i]*2**(p-i)for i in range(1,p+n+1)])
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))])
\ No newline at end of file
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