CJCoding With Joseph

Sort Strings by Length with Comparator

The array words = {"banana", "fig", "apple", "kiwi"} is given. Sort it in ascending order by string length using a Comparator, then print the array with Arrays.toString:

[fig, kiwi, apple, banana]

Use Arrays.sort(words, Comparator.comparingInt(String::length)).

Expected Output:

[fig, kiwi, apple, banana]
Topics:
Miscellaneous
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.