You can just work with language-independent solutions.
- Define a
factorial
function - Define a
fibonacci
function - Define a
bubble_sort
quick sort function which implements Bubble Sort algorithm.
- Write a program that prints sum of even numbers from 0 to 100 as short as possible?
- You have an list that contains lots of duplicated items. Create an
unique_list
function that returns a list of unique values. There are some ways to do this. The choice is yours. - How do you log process steps in your programs?