5 kyu

Weight for weight

5,470 of 56,230g964

Description:

My friend John and I are members of the "Fat to Fit Club (FFC)". John is worried because each month a list with the weights of members is published and each month he is the last on the list which means he is the heaviest.

I am the one who establishes the list so I told him: "Don't worry any more, I will modify the order of the list". It was decided to attribute a "weight" to numbers. The weight of a number will be from now on the sum of its digits.

For example 99 will have "weight" 18, 100 will have "weight" 1 so in the list 100 will come before 99.

Given a string with the weights of FFC members in normal order can you give this string ordered by "weights" of these numbers?

Example:

"56 65 74 100 99 68 86 180 90" ordered by numbers weights becomes: 

"100 180 90 56 65 74 68 86 99"

When two numbers have the same "weight", let us class them as if they were strings (alphabetical ordering) and not numbers:

180 is before 90 since, having the same "weight" (9), it comes before as a string.

All numbers in the list are positive numbers and the list can be empty.

Notes

  • it may happen that the input string have leading, trailing whitespaces and more than a unique whitespace between two consecutive numbers
  • For C: The result is freed.
Algorithms

Similar Kata:

More By Author:

Check out these other kata created by g964

Stats:

CreatedAug 8, 2015
PublishedAug 8, 2015
Warriors Trained135214
Total Skips26246
Total Code Submissions372911
Total Times Completed56230
Ruby Completions2036
Python Completions19805
JavaScript Completions16034
Haskell Completions734
Java Completions5470
C# Completions3948
Clojure Completions194
CoffeeScript Completions29
C++ Completions2051
PHP Completions1178
Crystal Completions16
C Completions509
TypeScript Completions1516
Rust Completions927
Swift Completions456
F# Completions94
R Completions110
Shell Completions43
OCaml Completions35
Kotlin Completions582
Objective-C Completions6
Lua Completions121
Scala Completions361
Elixir Completions174
Julia Completions68
PowerShell Completions51
Go Completions799
Nim Completions12
Reason Completions4
Racket Completions21
Pascal Completions7
Perl Completions21
Elm Completions9
COBOL Completions3
D Completions5
Prolog Completions8
Dart Completions34
Total Stars2818
% of votes with a positive feedback rating88% of 5445
Total "Very Satisfied" Votes4342
Total "Somewhat Satisfied" Votes892
Total "Not Satisfied" Votes211
Ad
Contributors
  • g964 Avatar
  • jhoffner Avatar
  • OverZealous Avatar
  • dnolan Avatar
  • donaldsebleung Avatar
  • kazk Avatar
  • Voile Avatar
  • monadius Avatar
  • hobovsky Avatar
  • user8436785 Avatar
  • akar-0 Avatar
  • BobtheLantern Avatar
  • Wikilift Avatar
  • Just4FunCoder Avatar
  • KayleighWasTaken Avatar
Ad