Skip to content

Commit 2d60bb7

Browse files
committed
2 sum problem with swift 4.2
1 parent f08d5fc commit 2d60bb7

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

Two-Sum Problem/Solution 1/2Sum.playground/Contents.swift

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
//: Two Sum
2-
// Last checked with: Version 9.0 (9A235)
3-
#if swift(>=4.0)
4-
print("Hello, Swift 4!")
5-
#endif
2+
// Last checked with: Version 10.0 (10A255)
63

74
func twoSum(_ nums: [Int], target: Int) -> (Int, Int)? {
85
var dict = [Int: Int]()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

Two-Sum Problem/Solution 2/2Sum.playground/Contents.swift

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
//: Playground - noun: a place where people can play
2-
// Last checked with: Version 9.0 beta 4 (9M189t)
3-
#if swift(>=4.0)
4-
print("Hello, Swift 4!")
5-
#endif
2+
// Last checked with: Version 10.0 (10A255)
63

74
func twoSumProblem(_ a: [Int], k: Int) -> ((Int, Int))? {
85
var i = 0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

0 commit comments

Comments
 (0)