Sabab

nura

Feb 9th, 2018
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. class Solution {
  6.  
  7.     static int runningTime(int[] arr) {
  8.         // Complete this function
  9.     }
  10.  
  11.     static void Main(String[] args) {
  12.         int n = Convert.ToInt32(Console.ReadLine());
  13.         string[] arr_temp = Console.ReadLine().Split(' ');
  14.         int[] arr = Array.ConvertAll(arr_temp,Int32.Parse);
  15.        
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment