Balanced number - MATLAB Cody - MATLAB Central

Problem 74. Balanced number

Difficulty:Rate

Given a positive integer find whether it is a balanced number. For a balanced number the sum of first half of digits is equal to the second half.

Examples:

 Input  n = 13722 
 Output tf is true

because 1 + 3 = 2 + 2.

 Input  n = 23567414 
 Output tf = true

All palindrome numbers are balanced.

This is partly from Project Euler, Problem 217.

Solution Stats

53.23% Correct | 46.77% Incorrect
Last Solution submitted on Mar 06, 2025

Problem Comments

Solution Comments

Show comments
Primes and Rough Numbers, Basic ideas
What is a rough number? What can they be used...
3
5

Problem Recent Solvers3029

Suggested Problems

More from this Author96

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page