Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
assert(isequal(ord(1),'1st'))
s =
'1st'
|
2 | Pass |
assert(isequal(ord(2),'2nd'))
s =
'2nd'
|
3 | Pass |
assert(isequal(ord(3),'3rd'))
s =
'3rd'
|
4 | Pass |
assert(isequal(ord(4),'4th'))
s =
'4th'
|
5 | Pass |
assert(isequal(ord(5),'5th'))
s =
'5th'
|
6 | Pass |
assert(isequal(ord(10),'10th'))
s =
'10th'
|
7 | Pass |
assert(isequal(ord(11),'11th'))
s =
'11th'
|
8 | Pass |
assert(isequal(ord(12),'12th'))
s =
'12th'
|
9 | Pass |
assert(isequal(ord(13),'13th'))
s =
'13th'
|
10 | Pass |
assert(isequal(ord(14),'14th'))
s =
'14th'
|
11 | Pass |
assert(isequal(ord(15),'15th'))
s =
'15th'
|
12 | Pass |
assert(isequal(ord(82),'82nd'))
s =
'82nd'
|
13 | Pass |
assert(isequal(ord(126),'126th'))
s =
'126th'
|
14 | Pass |
assert(isequal(ord(911),'911th'))
s =
'911th'
|
15 | Pass |
assert(isequal(ord(2012),'2012th'))
s =
'2012th'
|
16 | Pass |
assert(isequal(ord(4077),'4077th'))
s =
'4077th'
|
17 | Pass |
assert(isequal(ord(0),'0th'))
s =
'0th'
|
18 | Pass |
assert(isequal(ord(-101),'-101st'))
s =
'-101st'
|
Determine whether a vector is monotonically increasing
11915 Solvers
Similar Triangles - find the height of the tree
203 Solvers
299 Solvers
2313 Solvers
556 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!