# monkey-sort-rs **Repository Path**: codes_test/monkey-sort-rs ## Basic Information - **Project Name**: monkey-sort-rs - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-10 - **Last Updated**: 2025-06-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # monkey-sort-rs Monkey sort is a highly ineffective sorting algorithm, described by the following pseudocode: ``` while not isInOrder(deck): shuffle(deck) ``` You can run the program by running: ``` make # sort an array of 4 elements cargo run 4 # sort an array of 6 elements cargo run 6 ```