Please check sollution of delhi's odd even

@kartiksaxena2000 You logic is going wrong. Do a dry run and check it yourself.
What actually you are doing is that you are finding the sum of all digits and then checking its divisibility with 4 and 3 which is wrong. You have to find the sum of all digits which are even and the sum of all digits which are odd separately. If the sum of all even digits is divisible by 4 or sum of all odd digits is divisible by 3, then only print β€œYes”. In all other cases print β€œNo”.

Hope this helps :slightly_smiling_face:


please check now cuz it still is not running

@kartiksaxena2000 https://ide.codingblocks.com/s/126134
Submit and check now.