โ Back to Miscellaneous
Question 410
Sort Strings by Length with Comparator
Sort Strings by Length with Comparator
The arraywords = {"banana", "fig", "apple", "kiwi"}is given. Sort it in ascending order by string length using aComparator, then print the array withArrays.toString: [fig, kiwi, apple, banana] UseArrays.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.