Main public logs

Jump to navigation Jump to search

Combined display of all available logs of bibbleWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 01:58, 10 October 2024 Iwiseman talk contribs created page Sorting in Code (Created page with "=Sorting= ==Selection Sort== Selection sort is when we iterate each position and try and get our smallest value each time. E.g. in python <syntaxhighlight lang="py"> def selection_sort(array): m = len(array) for i in range(m - 1): # Assume the current index (i) has the minimum value min_index = i # Find the minimum element in the remaining unsorted part for j in range(i + 1, m): if array[j] < array[min_index]:...")