├── .gitignore ├── Consecutive Int ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ └── settings.json ├── CI and Euclidian │ ├── CI.py │ └── Euc.py ├── Comparison.py └── Display.py ├── Design └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | CI/ 2 | Euclidian/ 3 | -------------------------------------------------------------------------------- /Consecutive Int/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/CI-Euclidian-Iteration-/HEAD/Consecutive Int/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Consecutive Int/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/CI-Euclidian-Iteration-/HEAD/Consecutive Int/.vscode/launch.json -------------------------------------------------------------------------------- /Consecutive Int/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/CI-Euclidian-Iteration-/HEAD/Consecutive Int/.vscode/settings.json -------------------------------------------------------------------------------- /Consecutive Int/CI and Euclidian/CI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/CI-Euclidian-Iteration-/HEAD/Consecutive Int/CI and Euclidian/CI.py -------------------------------------------------------------------------------- /Consecutive Int/CI and Euclidian/Euc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/CI-Euclidian-Iteration-/HEAD/Consecutive Int/CI and Euclidian/Euc.py -------------------------------------------------------------------------------- /Consecutive Int/Comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/CI-Euclidian-Iteration-/HEAD/Consecutive Int/Comparison.py -------------------------------------------------------------------------------- /Consecutive Int/Display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/CI-Euclidian-Iteration-/HEAD/Consecutive Int/Display.py -------------------------------------------------------------------------------- /Design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/CI-Euclidian-Iteration-/HEAD/Design -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReuAzel181/CI-Euclidian-Iteration-/HEAD/README.md --------------------------------------------------------------------------------