2019-03-21 11:52:35 +05:30
---
id: 5a23c84252665b21eecc7edb
title: Largest int from concatenated ints
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302298
2021-01-13 03:31:00 +01:00
dashedName: largest-int-from-concatenated-ints
2019-03-21 11:52:35 +05:30
---
2020-11-27 19:02:05 +01:00
# --description--
2019-07-18 17:32:12 +02:00
2019-03-21 11:52:35 +05:30
Given a set of positive integers, write a function to order the integers in such a way that the concatenation of the numbers forms the largest possible integer and return this integer.
2020-03-30 11:23:18 -05:00
2020-11-27 19:02:05 +01:00
# --hints--
2019-03-21 11:52:35 +05:30
2020-11-27 19:02:05 +01:00
`maxCombine` should be a function.
2020-03-30 11:23:18 -05:00
2020-11-27 19:02:05 +01:00
```js
assert(typeof maxCombine == 'function');
```
2019-03-21 11:52:35 +05:30
2020-11-27 19:02:05 +01:00
`maxCombine([1, 3, 3, 4, 55])` should return a number.
2019-03-21 11:52:35 +05:30
2020-11-27 19:02:05 +01:00
```js
assert(typeof maxCombine([1, 3, 3, 4, 55]) == 'number');
```
2020-03-30 11:23:18 -05:00
2020-11-27 19:02:05 +01:00
`maxCombine([1, 3, 3, 4, 55])` should return `554331` .
2019-03-21 11:52:35 +05:30
2020-11-27 19:02:05 +01:00
```js
assert.equal(maxCombine([1, 3, 3, 4, 55]), 554331);
2019-03-21 11:52:35 +05:30
```
2020-11-27 19:02:05 +01:00
`maxCombine([71, 45, 23, 4, 5])` should return `71545423` .
2019-03-21 11:52:35 +05:30
2020-11-27 19:02:05 +01:00
```js
assert.equal(maxCombine([71, 45, 23, 4, 5]), 71545423);
```
`maxCombine([14, 43, 53, 114, 55])` should return `55534314114` .
2020-03-30 11:23:18 -05:00
2020-11-27 19:02:05 +01:00
```js
assert.equal(maxCombine([14, 43, 53, 114, 55]), 55534314114);
```
2019-07-18 17:32:12 +02:00
2020-11-27 19:02:05 +01:00
`maxCombine([1, 34, 3, 98, 9, 76, 45, 4])` should return `998764543431` .
2019-03-21 11:52:35 +05:30
```js
2020-11-27 19:02:05 +01:00
assert.equal(maxCombine([1, 34, 3, 98, 9, 76, 45, 4]), 998764543431);
```
2020-09-15 09:57:40 -07:00
2020-11-27 19:02:05 +01:00
`maxCombine([54, 546, 548, 60])` should return `6054854654` .
```js
assert.equal(maxCombine([54, 546, 548, 60]), 6054854654);
2019-03-21 11:52:35 +05:30
```
2020-11-27 19:02:05 +01:00
# --seed--
2019-03-21 11:52:35 +05:30
2020-11-27 19:02:05 +01:00
## --seed-contents--
2020-03-30 11:23:18 -05:00
2020-11-27 19:02:05 +01:00
```js
function maxCombine(xs) {
}
```
# --solutions--
2019-03-21 11:52:35 +05:30
```js
2020-03-30 11:23:18 -05:00
function maxCombine(xs) {
return parseInt(
xs
.sort(function(x, y) {
var a = x.toString(),
b = y.toString(),
ab = parseInt(a + b),
ba = parseInt(b + a);
return ab > ba ? -1 : ab < ba ? 1 : 0 ;
})
.join(''),
10
);
2019-03-21 11:52:35 +05:30
}
```