Changes between Version 5 and Version 6 of GoogleSummerCode2018


Ignore:
Timestamp:
Jan 19, 2018, 10:58:48 AM (6 years ago)
Author:
vrautenbach
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • GoogleSummerCode2018

    v5 v6  
    1212''Test for potential students:''
    1313Task 1:
    14 Write a Python program to construct an array by repeating.
    15 Sample array: [1, 2, 3, 4]
    16 Expected Output:
    17 Original array
    18 [1, 2, 3, 4]
    19 Repeating 2 times
    20 [1 2 3 4 1 2 3 4]
    21 Repeating 3 times
    22 [1 2 3 4 1 2 3 4 1 2 3 4]
     14Write a Python program to construct an array by repeating.<br/>
     15Sample array: [1, 2, 3, 4]<br/>
     16Expected Output:<br/>
     17Original array <br/>
     18[1, 2, 3, 4] <br/>
     19Repeating 2 times<br/>
     20[1 2 3 4 1 2 3 4]<br/>
     21Repeating 3 times <br/>
     22[1 2 3 4 1 2 3 4 1 2 3 4]<br/>
    2323
    2424