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
- Host: GitHub
- URL: https://github.com/tsra0ne/theswiftguy
- Owner: tsra0ne
- License: mit
- Created: 2024-09-05T04:49:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-24T13:19:29.000Z (about 1 year ago)
- Last Synced: 2024-10-14T03:22:23.521Z (12 months ago)
- Topics: swift, swiftui, uikit
- Homepage: https://theswiftguy.in
- Size: 186 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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) |