Write a function that accepts an integer and an index digit and returns a vector containing two integers which are the leading and trailing digits of the input integer, split after the index digit.

For example:

uncat(12345,3) should return [123 45]

Solution Stats

131 Solutions

77 Solvers

Last Solution submitted on Feb 04, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...