An open API service indexing awesome lists of open source software.

https://github.com/tsra0ne/theswiftguy

Learn SwiftUI and UIKit
https://github.com/tsra0ne/theswiftguy

swift swiftui uikit

Last synced: 3 months ago
JSON representation

Learn SwiftUI and UIKit

Awesome Lists containing this project

README

          

# The Swift Guy

## LeetCode Swift

| Solution | Number | Title | Difficulty | Complexity |
| -------- | ------ | ----- | ---------- | ---------- |
| [Swift](./docs/leetcode/problems/ArraysAndHashing/1-two-sum.swift) | 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | Easy | O(n) |
| [Swift](./docs/leetcode/problems/TwoPointers/15-3Sum.swift) | 15 | [3Sum](https://leetcode.com/problems/3sum/) | Medium | O(n^2) |
| [Swift](./docs/leetcode/problems/TwoPointers/125-valid-palindrome.swift) | 125 | [Valid Palindrome](https://leetcode.com/problems/valid-palindrome/) | Easy | O(n) |
| [Swift](./docs/leetcode/problems/ArraysAndHashing/128-longest-consecutive-sequence.swift) | 128 | [Longest Consecutive Sequence](https://leetcode.com/problems/longest-consecutive-sequence/) | Medium | O(n) |
| [Swift](./docs/leetcode/problems/TwoPointers/167-two-sum-II-input-array-is-sorted.swift) | 167 | [Two Sum II - Input Array Is Sorted](https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/) | Medium | O(n) |
| [Swift](./docs/leetcode/problems/ArraysAndHashing/217-contains-duplicate.swift) | 217 | [Contains Duplicate](https://leetcode.com/problems/contains-duplicate/) | Easy | O(n) |
| [Swift](./docs/leetcode/problems/ArraysAndHashing/242-valid-anagram.swift) | 242 | [Valid Anagram](https://leetcode.com/problems/valid-anagram/) | Easy | O(n) |
| [Swift](./docs/leetcode/problems/ArraysAndHashing/347-top-k-frequent-elements.swift) | 347 | [Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/) | Medium | O(n) |