Problem 933. Ordinal numbers

  • Created by Tim

Given an integer n, return the corresponding ordinal number as a character string. For example,

   ord(1)='1st'
   ord(2)='2nd'
   ord(3)='3rd'
   ord(4)='4th'

This is the dictionary definition of ordinal number, as opposed to the mathematical definition.

Solution Stats

30.59% Correct | 69.41% Incorrect
Last Solution submitted on Mar 04, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers244

Suggested Problems

More from this Author10

Problem Tags

Community Treasure Hunt

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

Start Hunting!