├── .gitignore ├── JI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── styl3r.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── JI.xcscheme │ └── xcschememanagement.plist ├── JI ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Costroller.swift ├── Costroller.xib ├── Info.plist ├── Levenshtein.swift ├── Matrix.swift ├── ViewController.swift ├── der.png ├── down_right.png ├── neuron.png ├── rr.png ├── rrr.png ├── smrr.png └── up_right.png ├── JITests ├── Info.plist └── JITests.swift ├── JIUITests ├── Info.plist └── JIUITests.swift ├── LICENSE ├── Podfile ├── README.md ├── cost.png ├── screenshot.jpeg └── v1.1.jpeg /.gitignore: -------------------------------------------------------------------------------- 1 | Podfile.lock 2 | Pods/* 3 | JI.xcworkspace/ 4 | -------------------------------------------------------------------------------- /JI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JI.xcodeproj/xcuserdata/styl3r.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI.xcodeproj/xcuserdata/styl3r.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /JI.xcodeproj/xcuserdata/styl3r.xcuserdatad/xcschemes/JI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI.xcodeproj/xcuserdata/styl3r.xcuserdatad/xcschemes/JI.xcscheme -------------------------------------------------------------------------------- /JI.xcodeproj/xcuserdata/styl3r.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI.xcodeproj/xcuserdata/styl3r.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /JI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/AppDelegate.swift -------------------------------------------------------------------------------- /JI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /JI/Costroller.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/Costroller.swift -------------------------------------------------------------------------------- /JI/Costroller.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/Costroller.xib -------------------------------------------------------------------------------- /JI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/Info.plist -------------------------------------------------------------------------------- /JI/Levenshtein.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/Levenshtein.swift -------------------------------------------------------------------------------- /JI/Matrix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/Matrix.swift -------------------------------------------------------------------------------- /JI/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/ViewController.swift -------------------------------------------------------------------------------- /JI/der.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/der.png -------------------------------------------------------------------------------- /JI/down_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/down_right.png -------------------------------------------------------------------------------- /JI/neuron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/neuron.png -------------------------------------------------------------------------------- /JI/rr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/rr.png -------------------------------------------------------------------------------- /JI/rrr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/rrr.png -------------------------------------------------------------------------------- /JI/smrr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/smrr.png -------------------------------------------------------------------------------- /JI/up_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JI/up_right.png -------------------------------------------------------------------------------- /JITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JITests/Info.plist -------------------------------------------------------------------------------- /JITests/JITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JITests/JITests.swift -------------------------------------------------------------------------------- /JIUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JIUITests/Info.plist -------------------------------------------------------------------------------- /JIUITests/JIUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/JIUITests/JIUITests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/README.md -------------------------------------------------------------------------------- /cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/cost.png -------------------------------------------------------------------------------- /screenshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/screenshot.jpeg -------------------------------------------------------------------------------- /v1.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Mr-Styler/JI/HEAD/v1.1.jpeg --------------------------------------------------------------------------------