Given n, first, calculate the number 2^n. Then, sum the digits that comprise that number. For example:
Input: n = 7 2^n = 128 Output: b = 1 + 2 + 8 = 11
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers72
Suggested Problems
-
Select every other element of a vector
36943 Solvers
-
Which values occur exactly three times?
5248 Solvers
-
Matrix indexing with two vectors of indices
781 Solvers
-
Rounding off numbers to n decimals
5749 Solvers
-
275 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Hello Mayuri, please fix the test and add more cases.
This problem has been improved and now has a working test suite.