Test if a Number is a Palindrome without using any String Operations - MATLAB Cody - MATLAB Central

Problem 172. Test if a Number is a Palindrome without using any String Operations

Difficulty:Rate

Description

Given an integer X, determine if it is a palindrome number. That is, X is equal to the X with the digits reversed (with no leading 0s). The twist is that your code cannot use any function or variable name that has either "str", "eval", "flip" or "printf" in it.

Example

    X = 123454321;
    Y = true;
    X = 1234;
    Y = false;

Solution Stats

34.27% Correct | 65.73% Incorrect
Last Solution submitted on Oct 16, 2025

Problem Comments

Solution Comments

Show comments
AI Is Transforming Engineering Workflows
It’s an honor to deliver the keynote at MATLAB EXPO 2025. I'll...
0
MATLAB EXPO 2025 Registration is Now Open! November 12 – 13, 2025
Registration is now open for MathWorks annual virtual event MATLAB EXPO 2025...
0

Problem Recent Solvers245

Suggested Problems

More from this Author56

Community Treasure Hunt

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

Start Hunting!