-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathContents.swift
85 lines (55 loc) · 1.56 KB
/
Contents.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import Foundation
public func solution(_ A : inout [Int]) -> Int {
// write your code in Swift 4.2.1 (Linux)
let isPermutation = 1
let notPermutation = 0
if A.count == 0 {
return notPermutation
}
let sortedValues = A.sorted(by: { $0 < $1 })
for i in 0..<sortedValues.count {
if sortedValues[i] != (i + 1) {
return notPermutation
}
}
return isPermutation
}
var A1 = [4,1,3,2]
var A2 = [4,1,3]
var A3 = [1,2,3,3]
print(solution(&A1)) // -> 1
print(solution(&A2)) // -> 0
print(solution(&A3)) // -> 0
// MARK: - Prompt
/*
A non-empty array A consisting of N integers is given.
A permutation is a sequence containing each element from 1 to N once, and only once.
For example, array A such that:
A[0] = 4
A[1] = 1
A[2] = 3
A[3] = 2
is a permutation, but array A such that:
A[0] = 4
A[1] = 1
A[2] = 3
is not a permutation, because value 2 is missing.
The goal is to check whether array A is a permutation.
Write a function:
public func solution(_ A : inout [Int]) -> Int
that, given an array A, returns 1 if array A is a permutation and 0 if it is not.
For example, given array A such that:
A[0] = 4
A[1] = 1
A[2] = 3
A[3] = 2
the function should return 1.
Given array A such that:
A[0] = 4
A[1] = 1
A[2] = 3
the function should return 0.
Write an efficient algorithm for the following assumptions:
N is an integer within the range [1..100,000];
each element of array A is an integer within the range [1..1,000,000,000].
*/