Skip to content

madza93/CombinedNumber

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Combined Numbers Build Status

Write a function accepting a list of non negative integers, and returning their largest possible combined number as a string. For example

given [50, 2, 1, 9] it returns "95021" (9 + 50 + 2 + 1)

given [5, 50, 56] it returns "56550" (56 + 5 + 50)

given 420, 42, 423] it returns "42423420" (42 + 423 + 420)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CMake 51.4%
  • C++ 48.6%