-
Notifications
You must be signed in to change notification settings - Fork 0
/
Diagonal Difference.swift
58 lines (43 loc) · 1.58 KB
/
Diagonal Difference.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* @author: syed ashraf ullah
* date: 07/2019
* problem: https://www.hackerrank.com/challenges/diagonal-difference/problem
*/
import Foundation
/*
* Complete the 'diagonalDifference' function below.
*
* The function is expected to return an INTEGER.
* The function accepts 2D_INTEGER_ARRAY arr as parameter.
*/
func diagonalDifference(arr: [[Int]]) -> Int {
// Write your code here
var size: Int = arr.count
var diagonalSum:[Int] = [0,0]
size -= 1
for item in 0...size{
diagonalSum[0] += arr[item][item]
diagonalSum[1] += arr[item][size - item]
}
return abs(diagonalSum[0] - diagonalSum[1])
}
let stdout = ProcessInfo.processInfo.environment["OUTPUT_PATH"]!
FileManager.default.createFile(atPath: stdout, contents: nil, attributes: nil)
let fileHandle = FileHandle(forWritingAtPath: stdout)!
guard let n = Int((readLine()?.trimmingCharacters(in: .whitespacesAndNewlines))!)
else { fatalError("Bad input") }
var arr = [[Int]]()
for _ in 1...n {
guard let arrRowTemp = readLine()?.replacingOccurrences(of: "\\s+$", with: "", options: .regularExpression) else { fatalError("Bad input") }
let arrRow: [Int] = arrRowTemp.split(separator: " ").map {
if let arrItem = Int($0) {
return arrItem
} else { fatalError("Bad input") }
}
guard arrRow.count == n else { fatalError("Bad input") }
arr.append(arrRow)
}
guard arr.count == n else { fatalError("Bad input") }
let result = diagonalDifference(arr: arr)
fileHandle.write(String(result).data(using: .utf8)!)
fileHandle.write("\n".data(using: .utf8)!)