Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- class Solution {
- static int runningTime(int[] arr) {
- // Complete this function
- }
- static void Main(String[] args) {
- int n = Convert.ToInt32(Console.ReadLine());
- string[] arr_temp = Console.ReadLine().Split(' ');
- int[] arr = Array.ConvertAll(arr_temp,Int32.Parse);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment