├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── Primes ├── C │ └── simpleprime.c ├── CPP │ ├── multiprime.cpp │ └── primes.cpp └── CUDA │ └── CudaPrimes.cu ├── README.md └── RomanNumerals ├── BASIC ├── chatgptcode.png └── roman.bas ├── C └── roman.c ├── CPP └── roman.cpp └── Python └── roman_numerals.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode/* 2 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Primes/C/simpleprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/Primes/C/simpleprime.c -------------------------------------------------------------------------------- /Primes/CPP/multiprime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/Primes/CPP/multiprime.cpp -------------------------------------------------------------------------------- /Primes/CPP/primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/Primes/CPP/primes.cpp -------------------------------------------------------------------------------- /Primes/CUDA/CudaPrimes.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/Primes/CUDA/CudaPrimes.cu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/README.md -------------------------------------------------------------------------------- /RomanNumerals/BASIC/chatgptcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/RomanNumerals/BASIC/chatgptcode.png -------------------------------------------------------------------------------- /RomanNumerals/BASIC/roman.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/RomanNumerals/BASIC/roman.bas -------------------------------------------------------------------------------- /RomanNumerals/C/roman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/RomanNumerals/C/roman.c -------------------------------------------------------------------------------- /RomanNumerals/CPP/roman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/RomanNumerals/CPP/roman.cpp -------------------------------------------------------------------------------- /RomanNumerals/Python/roman_numerals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlummersSoftwareLLC/ChatGPTCode/HEAD/RomanNumerals/Python/roman_numerals.py --------------------------------------------------------------------------------