TURBO MODE Green flag generates a new list and finds the median "S" to sort the "og list" - (will not affect the project's ability to find median) @fungamer2's instructions: This is the first Codegolf Challenge I have created Calculate the median of the list The median is the middle number when the data is arranged from least to greatest If there is an even number of elements, it is the average of the two middle numbers The goal is to use the least number of blocks possible to achieve the task Remix this project with your solution
Instead of sorting the initial list, this finds and deletes the lowest value in the list a few times and then finds the lowest value a few more times to set "output" to the median. Also, to save a block, I add 200,000 "Infinity"s to the list and repeat 200,000 times (max list length) instead of repeating [length of list].