I hereby claim:
- I am paulwoodiii on github.
- I am paulwoodiii (https://keybase.io/paulwoodiii) on keybase.
- I have a public key whose fingerprint is 4CFB 8CC8 7E0B B82F 81C8 36A2 2780 1CCB 13EA 9566
To claim this, I am signing this object:
| // | |
| // GraphView.swift | |
| // ParentChildLines | |
| // | |
| // Created by Paul Wood on 8/25/19. | |
| // Copyright © 2019 Paul Wood. All rights reserved. | |
| // | |
| import SwiftUI |
| import SwiftUI | |
| struct TriangleView: View { | |
| var body: some View { | |
| GeometryReader { proxy in | |
| return ZStack { | |
| Path { path in |
| // | |
| // ArrayOfArrayView.swift | |
| // PublishedList | |
| // | |
| // Created by Paul Wood on 8/23/19. | |
| // Copyright © 2019 Paul Wood. All rights reserved. | |
| // | |
| import SwiftUI | |
| import Combine |
| // | |
| // ContentView.swift | |
| // BinarySearchVisualized | |
| // | |
| // Created by Paul Wood on 8/23/19. | |
| // Copyright © 2019 Paul Wood. All rights reserved. | |
| // | |
| import SwiftUI | |
| import Combine |
| // | |
| // BinarySearchView.swift | |
| // WatchSort WatchKit Extension | |
| // | |
| // Created by Paul Wood on 8/22/19. | |
| // Copyright © 2019 Paul Wood. All rights reserved. | |
| // | |
| import SwiftUI | |
| import Combine |
| // | |
| // BinarySearchView.swift | |
| // WatchSort WatchKit Extension | |
| // | |
| // Created by Paul Wood on 8/22/19. | |
| // Copyright © 2019 Paul Wood. All rights reserved. | |
| // | |
| import SwiftUI | |
| import Combine |
| // | |
| // ContentView.swift | |
| // WatchSort WatchKit Extension | |
| // | |
| // Created by Paul Wood on 8/21/19. | |
| // Copyright © 2019 Paul Wood. All rights reserved. | |
| // | |
| // InsertionSortArray take from Apple's Sample Code and modified for SwiftUI | |
| // https://developer.apple.com/documentation/uikit/views_and_controls/collection_views/using_collection_view_compositional_layouts_and_diffable_data_sources | |
| // Check out the talk on diffable datasources here: https://developer.apple.com/videos/play/wwdc2019/220 |
| import SwiftUI | |
| extension String: Identifiable { | |
| public var id: String { return self } | |
| } | |
| struct ContentView: View { | |
| @State var list: [String] = ["Hello", "World"] | |
I hereby claim:
To claim this, I am signing this object:
| //: [Previous](@previous) | |
| import Foundation | |
| class SingleyLinkedList: CustomStringConvertible, Sequence { | |
| struct Iterator: Swift.IteratorProtocol { | |
| typealias Element = Int | |
| internal var nextValue: SLLNode? | |
| mutating func next() -> Int? { |