├── .gitignore ├── Bypasses ├── .vscode │ └── tasks.json ├── aux │ └── ... ├── bypass.c ├── bypass.py └── con │ └── ... ├── IA ├── ASD │ ├── Sem 1 (Flavia) │ │ ├── Lab 1 │ │ │ ├── 1.cpp │ │ │ ├── 2.cpp │ │ │ ├── 3.cpp │ │ │ ├── 4.cpp │ │ │ └── 5.py │ │ ├── Lab 2 │ │ │ ├── 1.py │ │ │ ├── 2.py │ │ │ ├── 3.py │ │ │ ├── 4.py │ │ │ ├── 5.py │ │ │ └── 6.py │ │ ├── Lab 3 │ │ │ ├── 1.py │ │ │ ├── 2.py │ │ │ ├── 3.py │ │ │ └── 8.py │ │ ├── Lab 4 │ │ │ ├── 1.py │ │ │ ├── 2.py │ │ │ └── 3.py │ │ ├── Lab 5 │ │ │ └── 5.py │ │ ├── Lab 6 │ │ │ └── 6.go │ │ ├── Lab 7 │ │ │ ├── algo.cpp │ │ │ └── algo.py │ │ ├── Lab 8 │ │ │ └── python3.py │ │ └── Lab 9 │ │ │ └── test.py │ └── Sem 2 (Selea) │ │ ├── 1.1 │ │ ├── 11.c │ │ ├── 12.c │ │ ├── 13.c │ │ ├── 14.c │ │ ├── 5.c │ │ └── 6.c │ │ ├── 1.2 │ │ ├── 1.c │ │ ├── 2.c │ │ └── 3.c │ │ ├── 1.3 │ │ ├── 10.c │ │ ├── 11.c │ │ ├── 2.c │ │ ├── 6.c │ │ └── 9.c │ │ ├── 1.4 │ │ ├── 2.c │ │ ├── 3.c │ │ └── 4.c │ │ ├── 2.1 │ │ ├── 2.c │ │ ├── 3.c │ │ ├── 4.c │ │ └── 5.c │ │ └── 2.2 │ │ └── 2.c ├── C++ │ ├── 11.4 │ │ └── 2.cpp │ ├── 6.10 │ │ └── 2.cpp │ ├── 6.2 │ │ └── 4.cpp │ ├── 6.3 │ │ └── 4.cpp │ ├── 6.5 │ │ └── 4.cpp │ ├── 6.6 │ │ └── 4.cpp │ ├── 7.2 │ │ ├── 4.cpp │ │ ├── 5.cpp │ │ └── 9.cpp │ ├── 7.3 │ │ └── 5.cpp │ ├── 7.4 │ │ └── 3.cpp │ ├── 8.1 │ │ └── 5.cpp │ ├── 8.3 │ │ └── 4.cpp │ ├── 9.2 │ │ └── 6.cpp │ └── 9.3 │ │ ├── 11.2 │ │ └── 5.cpp │ │ └── 2.cpp ├── C │ ├── 1.3 │ │ ├── 1.c │ │ └── 2.c │ ├── 1.4 │ │ └── 1.c │ ├── 1.6 │ │ ├── 1.c │ │ ├── 2.c │ │ ├── 3.c │ │ └── 4.c │ ├── 1.7 │ │ ├── 2.c │ │ ├── 3.c │ │ ├── 4.c │ │ ├── 5.c │ │ └── 6.c │ ├── 2.1 │ │ ├── 4.c │ │ └── 5.c │ ├── 2.2 │ │ └── 4.c │ ├── 2.3 │ │ └── 7.c │ ├── 2.4 │ │ ├── 1.c │ │ ├── 2.c │ │ ├── 3.c │ │ ├── 4.c │ │ ├── 5.c │ │ ├── 6.c │ │ └── 7.c │ ├── 3.1 │ │ ├── 6.c │ │ └── 7.c │ ├── 3.2 │ │ ├── 8.c │ │ └── 9.c │ ├── 3.4 │ │ ├── 1.c │ │ ├── 2.c │ │ ├── 3.c │ │ ├── 4.c │ │ ├── 5.c │ │ ├── 6.c │ │ └── 8.c │ ├── 4.1 │ │ ├── 1.c │ │ └── 2.c │ ├── 4.2 │ │ └── 1.c │ ├── 4.3 │ │ └── 3.c │ ├── 4.5 │ │ ├── 1.c │ │ ├── 2.c │ │ ├── 3.c │ │ ├── 4.c │ │ └── 5.c │ ├── 5.1 │ │ ├── 5.c │ │ └── 6.c │ └── 5.4 │ │ ├── 1.c │ │ └── 2.c └── Python │ ├── 1 │ ├── 1.1 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ ├── 6.py │ │ └── 7.py │ └── 1.2 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ └── 6.py │ ├── 2 │ ├── 2.1 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ ├── 6.py │ │ ├── 7.py │ │ └── 8.py │ ├── 2.2 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ ├── 6.py │ │ └── 7.py │ └── 2.3 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ └── 6.py │ ├── 3 │ ├── 3.1 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ └── 5.py │ └── 3.2 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ ├── 6.py │ │ └── 7.py │ ├── 4 │ ├── 4.1 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ ├── 6.py │ │ └── 7.py │ └── 4.2 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ └── 6.py │ ├── 5 │ ├── 5.1 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ ├── 6.py │ │ ├── 7.py │ │ └── 8.py │ └── 5.2 │ │ ├── 1.py │ │ └── 2.py │ ├── 6 │ ├── 6.1 │ │ └── 1.py │ └── 6.2 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ └── 4.py │ ├── 7 │ ├── 7.1 │ │ ├── 1.py │ │ ├── 2.py │ │ ├── 3.py │ │ ├── 4.py │ │ ├── 5.py │ │ ├── 6.py │ │ └── 7.py │ └── 7.2 │ │ ├── 1.py │ │ ├── 2.py │ │ └── 3.py │ └── 8 │ └── 8.1 │ ├── 1.py │ ├── 2.py │ ├── 3.py │ ├── 4.py │ ├── 5.py │ ├── 6.py │ ├── 7.py │ └── 8.py ├── IE ├── C │ ├── 1.1 │ │ ├── 1.c │ │ ├── 2.c │ │ ├── 3.c │ │ ├── 4.c │ │ ├── 5.c │ │ ├── 6.c │ │ └── 7.c │ ├── 1.2 │ │ ├── 1.c │ │ ├── 2.c │ │ ├── 3.c │ │ ├── 4.c │ │ ├── 5.c │ │ └── 6.c │ ├── 1.3 │ │ ├── 1.c │ │ ├── 2.c │ │ ├── 3.c │ │ └── 4.c │ ├── 1.4 │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── 1.c │ │ ├── 2.c │ │ ├── 3.c │ │ ├── 4.c │ │ ├── 5.c │ │ ├── 6.c │ │ └── 7.c │ └── 1.5 │ │ ├── .vscode │ │ └── tasks.json │ │ ├── 1.c │ │ ├── 2.c │ │ ├── 3.c │ │ ├── 4.c │ │ └── 5.c └── Cpp │ ├── 2.1 │ ├── 1.cpp │ └── 2.cpp │ ├── 2.2 │ ├── 1.cpp │ ├── 2.cpp │ ├── 3.cpp │ ├── 4.cpp │ ├── 5.cpp │ ├── 6.cpp │ ├── 7.cpp │ └── 8.cpp │ └── 2.3 │ ├── 1.cpp │ ├── 2.cpp │ ├── 3.cpp │ └── 4.cpp ├── LICENSE ├── read big file.py └── rot example.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/.gitignore -------------------------------------------------------------------------------- /Bypasses/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/Bypasses/.vscode/tasks.json -------------------------------------------------------------------------------- /Bypasses/aux/...: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Bypasses/bypass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/Bypasses/bypass.c -------------------------------------------------------------------------------- /Bypasses/bypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/Bypasses/bypass.py -------------------------------------------------------------------------------- /Bypasses/con/...: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 1/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 1/1.cpp -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 1/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 1/2.cpp -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 1/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 1/3.cpp -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 1/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 1/4.cpp -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 1/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 1/5.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 2/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 2/1.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 2/2.py: -------------------------------------------------------------------------------- 1 | print(input()[::-1]) 2 | -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 2/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 2/3.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 2/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 2/4.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 2/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 2/5.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 2/6.py: -------------------------------------------------------------------------------- 1 | a=[1,2,3,4,5,6,7,8,9] 2 | print(a[1:3]) 3 | -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 3/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 3/1.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 3/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 3/2.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 3/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 3/3.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 3/8.py: -------------------------------------------------------------------------------- 1 | l = [6,8,8,312,645,442,75654,123,5,2] 2 | print(min(l)) 3 | -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 4/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 4/1.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 4/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 4/2.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 4/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 4/3.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 5/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 5/5.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 6/6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 6/6.go -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 7/algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 7/algo.cpp -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 7/algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 7/algo.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 8/python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 8/python3.py -------------------------------------------------------------------------------- /IA/ASD/Sem 1 (Flavia)/Lab 9/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 1 (Flavia)/Lab 9/test.py -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.1/11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.1/11.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.1/12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.1/12.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.1/13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.1/13.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.1/14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.1/14.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.1/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.1/5.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.1/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.1/6.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.2/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.2/1.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.2/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.2/2.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.2/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.2/3.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.3/10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.3/10.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.3/11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.3/11.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.3/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.3/2.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.3/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.3/6.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.3/9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.3/9.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.4/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.4/2.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.4/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.4/3.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/1.4/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/1.4/4.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/2.1/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/2.1/2.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/2.1/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/2.1/3.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/2.1/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/2.1/4.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/2.1/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/2.1/5.c -------------------------------------------------------------------------------- /IA/ASD/Sem 2 (Selea)/2.2/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/ASD/Sem 2 (Selea)/2.2/2.c -------------------------------------------------------------------------------- /IA/C++/11.4/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/11.4/2.cpp -------------------------------------------------------------------------------- /IA/C++/6.10/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/6.10/2.cpp -------------------------------------------------------------------------------- /IA/C++/6.2/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/6.2/4.cpp -------------------------------------------------------------------------------- /IA/C++/6.3/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/6.3/4.cpp -------------------------------------------------------------------------------- /IA/C++/6.5/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/6.5/4.cpp -------------------------------------------------------------------------------- /IA/C++/6.6/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/6.6/4.cpp -------------------------------------------------------------------------------- /IA/C++/7.2/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/7.2/4.cpp -------------------------------------------------------------------------------- /IA/C++/7.2/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/7.2/5.cpp -------------------------------------------------------------------------------- /IA/C++/7.2/9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/7.2/9.cpp -------------------------------------------------------------------------------- /IA/C++/7.3/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/7.3/5.cpp -------------------------------------------------------------------------------- /IA/C++/7.4/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/7.4/3.cpp -------------------------------------------------------------------------------- /IA/C++/8.1/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/8.1/5.cpp -------------------------------------------------------------------------------- /IA/C++/8.3/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/8.3/4.cpp -------------------------------------------------------------------------------- /IA/C++/9.2/6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/9.2/6.cpp -------------------------------------------------------------------------------- /IA/C++/9.3/11.2/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/9.3/11.2/5.cpp -------------------------------------------------------------------------------- /IA/C++/9.3/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C++/9.3/2.cpp -------------------------------------------------------------------------------- /IA/C/1.3/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.3/1.c -------------------------------------------------------------------------------- /IA/C/1.3/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.3/2.c -------------------------------------------------------------------------------- /IA/C/1.4/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.4/1.c -------------------------------------------------------------------------------- /IA/C/1.6/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.6/1.c -------------------------------------------------------------------------------- /IA/C/1.6/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.6/2.c -------------------------------------------------------------------------------- /IA/C/1.6/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.6/3.c -------------------------------------------------------------------------------- /IA/C/1.6/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.6/4.c -------------------------------------------------------------------------------- /IA/C/1.7/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.7/2.c -------------------------------------------------------------------------------- /IA/C/1.7/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.7/3.c -------------------------------------------------------------------------------- /IA/C/1.7/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.7/4.c -------------------------------------------------------------------------------- /IA/C/1.7/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.7/5.c -------------------------------------------------------------------------------- /IA/C/1.7/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/1.7/6.c -------------------------------------------------------------------------------- /IA/C/2.1/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.1/4.c -------------------------------------------------------------------------------- /IA/C/2.1/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.1/5.c -------------------------------------------------------------------------------- /IA/C/2.2/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.2/4.c -------------------------------------------------------------------------------- /IA/C/2.3/7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.3/7.c -------------------------------------------------------------------------------- /IA/C/2.4/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.4/1.c -------------------------------------------------------------------------------- /IA/C/2.4/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.4/2.c -------------------------------------------------------------------------------- /IA/C/2.4/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.4/3.c -------------------------------------------------------------------------------- /IA/C/2.4/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.4/4.c -------------------------------------------------------------------------------- /IA/C/2.4/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.4/5.c -------------------------------------------------------------------------------- /IA/C/2.4/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.4/6.c -------------------------------------------------------------------------------- /IA/C/2.4/7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/2.4/7.c -------------------------------------------------------------------------------- /IA/C/3.1/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.1/6.c -------------------------------------------------------------------------------- /IA/C/3.1/7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.1/7.c -------------------------------------------------------------------------------- /IA/C/3.2/8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.2/8.c -------------------------------------------------------------------------------- /IA/C/3.2/9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.2/9.c -------------------------------------------------------------------------------- /IA/C/3.4/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.4/1.c -------------------------------------------------------------------------------- /IA/C/3.4/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.4/2.c -------------------------------------------------------------------------------- /IA/C/3.4/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.4/3.c -------------------------------------------------------------------------------- /IA/C/3.4/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.4/4.c -------------------------------------------------------------------------------- /IA/C/3.4/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.4/5.c -------------------------------------------------------------------------------- /IA/C/3.4/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.4/6.c -------------------------------------------------------------------------------- /IA/C/3.4/8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/3.4/8.c -------------------------------------------------------------------------------- /IA/C/4.1/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/4.1/1.c -------------------------------------------------------------------------------- /IA/C/4.1/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/4.1/2.c -------------------------------------------------------------------------------- /IA/C/4.2/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/4.2/1.c -------------------------------------------------------------------------------- /IA/C/4.3/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/4.3/3.c -------------------------------------------------------------------------------- /IA/C/4.5/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/4.5/1.c -------------------------------------------------------------------------------- /IA/C/4.5/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/4.5/2.c -------------------------------------------------------------------------------- /IA/C/4.5/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/4.5/3.c -------------------------------------------------------------------------------- /IA/C/4.5/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/4.5/4.c -------------------------------------------------------------------------------- /IA/C/4.5/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/4.5/5.c -------------------------------------------------------------------------------- /IA/C/5.1/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/5.1/5.c -------------------------------------------------------------------------------- /IA/C/5.1/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/5.1/6.c -------------------------------------------------------------------------------- /IA/C/5.4/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/5.4/1.c -------------------------------------------------------------------------------- /IA/C/5.4/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/C/5.4/2.c -------------------------------------------------------------------------------- /IA/Python/1/1.1/1.py: -------------------------------------------------------------------------------- 1 | a=2 2 | b=2.7 3 | a=a*b 4 | print(a) 5 | -------------------------------------------------------------------------------- /IA/Python/1/1.1/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.1/2.py -------------------------------------------------------------------------------- /IA/Python/1/1.1/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.1/3.py -------------------------------------------------------------------------------- /IA/Python/1/1.1/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.1/4.py -------------------------------------------------------------------------------- /IA/Python/1/1.1/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.1/5.py -------------------------------------------------------------------------------- /IA/Python/1/1.1/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.1/6.py -------------------------------------------------------------------------------- /IA/Python/1/1.1/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.1/7.py -------------------------------------------------------------------------------- /IA/Python/1/1.2/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.2/1.py -------------------------------------------------------------------------------- /IA/Python/1/1.2/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.2/2.py -------------------------------------------------------------------------------- /IA/Python/1/1.2/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.2/3.py -------------------------------------------------------------------------------- /IA/Python/1/1.2/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.2/4.py -------------------------------------------------------------------------------- /IA/Python/1/1.2/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.2/5.py -------------------------------------------------------------------------------- /IA/Python/1/1.2/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/1/1.2/6.py -------------------------------------------------------------------------------- /IA/Python/2/2.1/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.1/1.py -------------------------------------------------------------------------------- /IA/Python/2/2.1/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.1/2.py -------------------------------------------------------------------------------- /IA/Python/2/2.1/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.1/3.py -------------------------------------------------------------------------------- /IA/Python/2/2.1/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.1/4.py -------------------------------------------------------------------------------- /IA/Python/2/2.1/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.1/5.py -------------------------------------------------------------------------------- /IA/Python/2/2.1/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.1/6.py -------------------------------------------------------------------------------- /IA/Python/2/2.1/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.1/7.py -------------------------------------------------------------------------------- /IA/Python/2/2.1/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.1/8.py -------------------------------------------------------------------------------- /IA/Python/2/2.2/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.2/1.py -------------------------------------------------------------------------------- /IA/Python/2/2.2/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.2/2.py -------------------------------------------------------------------------------- /IA/Python/2/2.2/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.2/3.py -------------------------------------------------------------------------------- /IA/Python/2/2.2/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.2/4.py -------------------------------------------------------------------------------- /IA/Python/2/2.2/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.2/5.py -------------------------------------------------------------------------------- /IA/Python/2/2.2/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.2/6.py -------------------------------------------------------------------------------- /IA/Python/2/2.2/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.2/7.py -------------------------------------------------------------------------------- /IA/Python/2/2.3/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.3/1.py -------------------------------------------------------------------------------- /IA/Python/2/2.3/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.3/2.py -------------------------------------------------------------------------------- /IA/Python/2/2.3/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.3/3.py -------------------------------------------------------------------------------- /IA/Python/2/2.3/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.3/4.py -------------------------------------------------------------------------------- /IA/Python/2/2.3/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.3/5.py -------------------------------------------------------------------------------- /IA/Python/2/2.3/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/2/2.3/6.py -------------------------------------------------------------------------------- /IA/Python/3/3.1/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.1/1.py -------------------------------------------------------------------------------- /IA/Python/3/3.1/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.1/2.py -------------------------------------------------------------------------------- /IA/Python/3/3.1/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.1/3.py -------------------------------------------------------------------------------- /IA/Python/3/3.1/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.1/4.py -------------------------------------------------------------------------------- /IA/Python/3/3.1/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.1/5.py -------------------------------------------------------------------------------- /IA/Python/3/3.2/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.2/1.py -------------------------------------------------------------------------------- /IA/Python/3/3.2/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.2/2.py -------------------------------------------------------------------------------- /IA/Python/3/3.2/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.2/3.py -------------------------------------------------------------------------------- /IA/Python/3/3.2/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.2/4.py -------------------------------------------------------------------------------- /IA/Python/3/3.2/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.2/5.py -------------------------------------------------------------------------------- /IA/Python/3/3.2/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.2/6.py -------------------------------------------------------------------------------- /IA/Python/3/3.2/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/3/3.2/7.py -------------------------------------------------------------------------------- /IA/Python/4/4.1/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.1/1.py -------------------------------------------------------------------------------- /IA/Python/4/4.1/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.1/2.py -------------------------------------------------------------------------------- /IA/Python/4/4.1/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.1/3.py -------------------------------------------------------------------------------- /IA/Python/4/4.1/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.1/4.py -------------------------------------------------------------------------------- /IA/Python/4/4.1/5.py: -------------------------------------------------------------------------------- 1 | print(input().upper()) 2 | -------------------------------------------------------------------------------- /IA/Python/4/4.1/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.1/6.py -------------------------------------------------------------------------------- /IA/Python/4/4.1/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.1/7.py -------------------------------------------------------------------------------- /IA/Python/4/4.2/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.2/1.py -------------------------------------------------------------------------------- /IA/Python/4/4.2/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.2/2.py -------------------------------------------------------------------------------- /IA/Python/4/4.2/3.py: -------------------------------------------------------------------------------- 1 | import re 2 | print(re.compile("07[0-9]{8}").findall(input())) 3 | -------------------------------------------------------------------------------- /IA/Python/4/4.2/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.2/4.py -------------------------------------------------------------------------------- /IA/Python/4/4.2/5.py: -------------------------------------------------------------------------------- 1 | import re 2 | print(" ".join(re.compile("[a-zA-Z]+[.]*").findall(input()))) 3 | -------------------------------------------------------------------------------- /IA/Python/4/4.2/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/4/4.2/6.py -------------------------------------------------------------------------------- /IA/Python/5/5.1/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.1/1.py -------------------------------------------------------------------------------- /IA/Python/5/5.1/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.1/2.py -------------------------------------------------------------------------------- /IA/Python/5/5.1/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.1/3.py -------------------------------------------------------------------------------- /IA/Python/5/5.1/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.1/4.py -------------------------------------------------------------------------------- /IA/Python/5/5.1/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.1/5.py -------------------------------------------------------------------------------- /IA/Python/5/5.1/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.1/6.py -------------------------------------------------------------------------------- /IA/Python/5/5.1/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.1/7.py -------------------------------------------------------------------------------- /IA/Python/5/5.1/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.1/8.py -------------------------------------------------------------------------------- /IA/Python/5/5.2/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.2/1.py -------------------------------------------------------------------------------- /IA/Python/5/5.2/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/5/5.2/2.py -------------------------------------------------------------------------------- /IA/Python/6/6.1/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/6/6.1/1.py -------------------------------------------------------------------------------- /IA/Python/6/6.2/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/6/6.2/1.py -------------------------------------------------------------------------------- /IA/Python/6/6.2/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/6/6.2/2.py -------------------------------------------------------------------------------- /IA/Python/6/6.2/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/6/6.2/3.py -------------------------------------------------------------------------------- /IA/Python/6/6.2/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/6/6.2/4.py -------------------------------------------------------------------------------- /IA/Python/7/7.1/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.1/1.py -------------------------------------------------------------------------------- /IA/Python/7/7.1/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.1/2.py -------------------------------------------------------------------------------- /IA/Python/7/7.1/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.1/3.py -------------------------------------------------------------------------------- /IA/Python/7/7.1/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.1/4.py -------------------------------------------------------------------------------- /IA/Python/7/7.1/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.1/5.py -------------------------------------------------------------------------------- /IA/Python/7/7.1/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.1/6.py -------------------------------------------------------------------------------- /IA/Python/7/7.1/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.1/7.py -------------------------------------------------------------------------------- /IA/Python/7/7.2/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.2/1.py -------------------------------------------------------------------------------- /IA/Python/7/7.2/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.2/2.py -------------------------------------------------------------------------------- /IA/Python/7/7.2/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/7/7.2/3.py -------------------------------------------------------------------------------- /IA/Python/8/8.1/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/8/8.1/1.py -------------------------------------------------------------------------------- /IA/Python/8/8.1/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/8/8.1/2.py -------------------------------------------------------------------------------- /IA/Python/8/8.1/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/8/8.1/3.py -------------------------------------------------------------------------------- /IA/Python/8/8.1/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/8/8.1/4.py -------------------------------------------------------------------------------- /IA/Python/8/8.1/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/8/8.1/5.py -------------------------------------------------------------------------------- /IA/Python/8/8.1/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/8/8.1/6.py -------------------------------------------------------------------------------- /IA/Python/8/8.1/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/8/8.1/7.py -------------------------------------------------------------------------------- /IA/Python/8/8.1/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IA/Python/8/8.1/8.py -------------------------------------------------------------------------------- /IE/C/1.1/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.1/1.c -------------------------------------------------------------------------------- /IE/C/1.1/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.1/2.c -------------------------------------------------------------------------------- /IE/C/1.1/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.1/3.c -------------------------------------------------------------------------------- /IE/C/1.1/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.1/4.c -------------------------------------------------------------------------------- /IE/C/1.1/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.1/5.c -------------------------------------------------------------------------------- /IE/C/1.1/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.1/6.c -------------------------------------------------------------------------------- /IE/C/1.1/7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.1/7.c -------------------------------------------------------------------------------- /IE/C/1.2/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.2/1.c -------------------------------------------------------------------------------- /IE/C/1.2/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.2/2.c -------------------------------------------------------------------------------- /IE/C/1.2/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.2/3.c -------------------------------------------------------------------------------- /IE/C/1.2/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.2/4.c -------------------------------------------------------------------------------- /IE/C/1.2/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.2/5.c -------------------------------------------------------------------------------- /IE/C/1.2/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.2/6.c -------------------------------------------------------------------------------- /IE/C/1.3/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.3/1.c -------------------------------------------------------------------------------- /IE/C/1.3/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.3/2.c -------------------------------------------------------------------------------- /IE/C/1.3/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.3/3.c -------------------------------------------------------------------------------- /IE/C/1.3/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.3/4.c -------------------------------------------------------------------------------- /IE/C/1.4/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.4/.vscode/settings.json -------------------------------------------------------------------------------- /IE/C/1.4/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.4/1.c -------------------------------------------------------------------------------- /IE/C/1.4/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.4/2.c -------------------------------------------------------------------------------- /IE/C/1.4/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.4/3.c -------------------------------------------------------------------------------- /IE/C/1.4/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.4/4.c -------------------------------------------------------------------------------- /IE/C/1.4/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.4/5.c -------------------------------------------------------------------------------- /IE/C/1.4/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.4/6.c -------------------------------------------------------------------------------- /IE/C/1.4/7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.4/7.c -------------------------------------------------------------------------------- /IE/C/1.5/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.5/.vscode/tasks.json -------------------------------------------------------------------------------- /IE/C/1.5/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.5/1.c -------------------------------------------------------------------------------- /IE/C/1.5/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.5/2.c -------------------------------------------------------------------------------- /IE/C/1.5/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.5/3.c -------------------------------------------------------------------------------- /IE/C/1.5/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.5/4.c -------------------------------------------------------------------------------- /IE/C/1.5/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/C/1.5/5.c -------------------------------------------------------------------------------- /IE/Cpp/2.1/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.1/1.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.1/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.1/2.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.2/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.2/1.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.2/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.2/2.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.2/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.2/3.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.2/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.2/4.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.2/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.2/5.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.2/6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.2/6.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.2/7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.2/7.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.2/8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.2/8.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.3/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.3/1.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.3/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.3/2.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.3/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.3/3.cpp -------------------------------------------------------------------------------- /IE/Cpp/2.3/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/IE/Cpp/2.3/4.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/LICENSE -------------------------------------------------------------------------------- /read big file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/read big file.py -------------------------------------------------------------------------------- /rot example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulDotSH/random-small/HEAD/rot example.c --------------------------------------------------------------------------------