Ad
Tables
Data Structures

Given any positive interger num, result should list of numbers from zero till num

For example

  • def int_to_table(10) should return [0,1,2,3,4,5,6,7,8,9]
  • def int_to_table(1) should return [0,1]