All Projects → jennschiffer → Jortsort

jennschiffer / Jortsort

Licence: mit
the official website for jortSorting

Projects that are alternatives of or similar to Jortsort

Java
All Algorithms implemented in Java
Stars: ✭ 42,893 (+38197.32%)
Mutual labels:  algorithms, sort
Algorithm
The repository algorithms implemented on the Go
Stars: ✭ 163 (+45.54%)
Mutual labels:  algorithms, sort
Sage
Mirror of the Sage source tree -- please do not submit PRs here -- everything must be submitted via https://trac.sagemath.org/
Stars: ✭ 1,656 (+1378.57%)
Mutual labels:  algorithms, science
Pretty Algorithms
🌊 Pretty, common and useful algorithms with modern JS and beautiful tests
Stars: ✭ 2,163 (+1831.25%)
Mutual labels:  algorithms, sort
Algorithms
Minimal examples of data structures and algorithms in Python
Stars: ✭ 20,123 (+17866.96%)
Mutual labels:  algorithms, sort
Algorithms
CLRS study. Codes are written with golang.
Stars: ✭ 482 (+330.36%)
Mutual labels:  algorithms, sort
C Plus Plus
Collection of various algorithms in mathematics, machine learning, computer science and physics implemented in C++ for educational purposes.
Stars: ✭ 17,151 (+15213.39%)
Mutual labels:  algorithms, sort
Mega Interview Guide
The MEGA interview guide, JavaSciript, Front End, Comp Sci
Stars: ✭ 255 (+127.68%)
Mutual labels:  algorithms, sort
Algods
Implementation of Algorithms and Data Structures, Problems and Solutions
Stars: ✭ 3,295 (+2841.96%)
Mutual labels:  algorithms, sort
Datastructure
常用数据结构及其算法的Java实现,包括但不仅限于链表、栈,队列,树,堆,图等经典数据结构及其他经典基础算法(如排序等)...
Stars: ✭ 419 (+274.11%)
Mutual labels:  algorithms, sort
C
Collection of various algorithms in mathematics, machine learning, computer science, physics, etc implemented in C for educational purposes.
Stars: ✭ 11,897 (+10522.32%)
Mutual labels:  algorithms, sort
Science Based Games List
Science-based games - a collaborative list
Stars: ✭ 1,461 (+1204.46%)
Mutual labels:  science
Cslearning
开源项目之「计算机编程自学之路」:计算机自学指南+面试大全+资源分享+技术文章
Stars: ✭ 107 (-4.46%)
Mutual labels:  algorithms
Syntaxmeets
Syntaxmeets. Create rooms 🏠 Call your friends 👬🏼 Sip Chai, ☕ Chat, Create, and Code👨‍💻. A coding platform to code simultaneously 🚀 with your friends and design your algorithms on SyntaxPad.💫✨
Stars: ✭ 110 (-1.79%)
Mutual labels:  algorithms
Gods
GoDS (Go Data Structures). Containers (Sets, Lists, Stacks, Maps, Trees), Sets (HashSet, TreeSet, LinkedHashSet), Lists (ArrayList, SinglyLinkedList, DoublyLinkedList), Stacks (LinkedListStack, ArrayStack), Maps (HashMap, TreeMap, HashBidiMap, TreeBidiMap, LinkedHashMap), Trees (RedBlackTree, AVLTree, BTree, BinaryHeap), Comparators, Iterators, …
Stars: ✭ 10,883 (+9616.96%)
Mutual labels:  sort
Ar Position
ActiveRecord behavior, which provides ability for custom records order setup
Stars: ✭ 107 (-4.46%)
Mutual labels:  sort
Letters
Письма к студентам курса
Stars: ✭ 107 (-4.46%)
Mutual labels:  algorithms
Openmotor
An open-source internal ballistics simulator for rocket motor experimenters
Stars: ✭ 107 (-4.46%)
Mutual labels:  science
Ultimate Go
This repo contains my notes on working with Go and computer systems.
Stars: ✭ 1,530 (+1266.07%)
Mutual labels:  algorithms
Acm Icpc Library
Stars: ✭ 111 (-0.89%)
Mutual labels:  algorithms

jortSort

jort.technology

sorting is over as we know it. more info soon.

var jortSort = function( array ) {

  // sort the array
  var originalArray = array.slice(0);
  array.sort( function(a,b){return a - b} );

  // compare to see if it was originally sorted
  for (var i = 0; i < originalArray.length; ++i) {
    if (originalArray[i] !== array[i]) return false;
  }

  return true;
};

literally made with blood and tears

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].