id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

simona1@sfusd.edu sorting > sort
prev  |  next  |  chance

Write a method that sorts and returns the array nums. You can use the sorting algorithm of your choice, but a bubble-sort is probably the easiest. nums.length will be greater than 1.


sort([9, 8, 7]) → [7, 8, 9]
sort([9, 8, 7, 8]) → [7, 8, 8, 9]
sort([1, 2, 3, 4, 5]) → [1, 2, 3, 4, 5]

...Save, Compile, Run (ctrl-enter)

public int[] sort(int[] nums) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Post-solution available

Copyright Nick Parlante 2017 - privacy