id/email
password
forgot password
about | help | done | prefs | create account
CodingBat code practice

Python > Logic-2 > lucky_sum
prev  |  next  |  chance

Given 3 int values, a b c, return their sum. However, if one of the values is 13 then it does not count towards the sum and values to its right do not count. So for example, if b is 13, then both b and c do not count.

lucky_sum(1, 2, 3) → 6
lucky_sum(1, 2, 13) → 3
lucky_sum(1, 13, 3) → 1

...Save, Compile, Run

See also Python Example Code. Python help docs: Python Strings | Python Lists | Python If Boolean


prev  |  next  |  chance   |  CodingBat  >  Logic-2

Forget It! -- delete my code for this problem 209.0

Copyright Nick Parlante 2006-10 - privacy