Changes between Version 6 and Version 7 of GoogleSummerCode2018


Ignore:
Timestamp:
Jan 19, 2018, 11:01:50 AM (6 years ago)
Author:
vrautenbach
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • GoogleSummerCode2018

    v6 v7  
    99''Languages and APIs'': Python, JavaScript and JavaScript APIs such as, require.js, bootstrap and OL3.
    1010
     11\\
    1112
    12 ''Test for potential students:''
    13 Task 1:
    14 Write a Python program to construct an array by repeating.<br/>
    15 Sample array: [1, 2, 3, 4]<br/>
    16 Expected Output:<br/>
    17 Original array <br/>
    18 [1, 2, 3, 4] <br/>
    19 Repeating 2 times<br/>
    20 [1 2 3 4 1 2 3 4]<br/>
    21 Repeating 3 times <br/>
    22 [1 2 3 4 1 2 3 4 1 2 3 4]<br/>
     13**''Test for potential students:''**
     14
     15''Task 1:''
     16Write a Python program to construct an array by repeating.
     17
     18Expected Output:
     19
     20Original array     [1, 2, 3, 4]
     21
     22Repeating 2 times    [1 2 3 4 1 2 3 4]
     23
     24Repeating 3 times    [1 2 3 4 1 2 3 4 1 2 3 4]
    2325
    2426
    25 Task 2:
     27\\
     28
     29''Task 2:''
    2630Create a basic web map using OpenLayers displaying json layer, also ensure that you bootstrap the page.