Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 701 Bytes

instructions.md

File metadata and controls

15 lines (15 loc) · 701 Bytes

Write a function that returns the largest element in a list. Write function that reverses a list, preferably in place. Write a function that checks whether an element occurs in a list. Write a function that returns the elements on odd positions in a list. Write a function that computes the running total of a list. Write a function that tests whether a string is a palindrome. Write a function that takes a list of strings an prints them, one per line, in a rectangular frame. For example the list ["Hello", "World", "in", "a", "frame"] gets printed as:


  • Hello *
  • World *
  • in *
  • a *
  • frame *

Write a function that computes the list of the first 100 Fibonacci numbers.