diff options
Diffstat (limited to 'progs/a472.py')
-rw-r--r-- | progs/a472.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a472.py b/progs/a472.py new file mode 100644 index 0000000..625f1c5 --- /dev/null +++ b/progs/a472.py @@ -0,0 +1,6 @@ +def odd_Equivalent(s,n):
+ count=0
+ for i in range(0,n):
+ if (s[i] == '1'):
+ count = count + 1
+ return count
\ No newline at end of file |