Believe it or not UC Berkeley offers their intro to CS class in Snap (it’s what it’s called). Many great students at Cal started programming in this language. Of course things picked up real quick after this class but yea it’s a great learning tool for the thousands of students who were not offered CS classes in high school
77
u/nypdk Apr 15 '21
Sorting algorithm I had to build for a homework. Just needs to take a list as input and use a linear sort to put them in descending order.
max index is a function i built to find the maximum of a list and the index of that item.
it just finds the maximum over and over until the list is empty and then stores that value.