├── BFS └── Knight Moves(UVA).cpp ├── DFS ├── Clocks(USACO).cpp └── Is it a tree(SPOJ).cpp ├── DP ├── Edit Distance │ └── Changing a string (CF).cpp ├── Mixtures (Iterative).cpp └── Mixtures (Recursive).cpp ├── Euler - Directed Graph └── Catenyms (UVA).cpp ├── Euler - Undirected Graph └── Fence (USACO).cpp ├── README.md ├── Week 1.1 ├── Clocks (USACO).cpp ├── Is it a tree.cpp └── Knight Moves.cpp ├── Week 1.2 ├── Catenyms (UVA).cpp ├── Changing a string (CF).cpp ├── Fence (USACO).cpp ├── Mixtures (Iterative).cpp └── Mixtures (SPOJ).cpp ├── Week 2.1 ├── AggCows(Spoj).cpp ├── Marbles(1)-SPOJ.cpp ├── Marbles(2)-SPOJ.cpp ├── Pie(SPOJ).cpp └── Race Time(CodeChef).cpp ├── Week 2.2 ├── Matrix Exponentiation │ ├── code 1.cpp │ └── code 2.cpp ├── Probability with BF │ ├── code 1.cpp │ ├── code 2.cpp │ └── code 3.cpp └── Probability with DP │ ├── code 1.cpp │ ├── code 2.cpp │ └── code 3.cpp └── Week 3.1 ├── code 1.cpp └── code 2.cpp /BFS/Knight Moves(UVA).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/BFS/Knight Moves(UVA).cpp -------------------------------------------------------------------------------- /DFS/Clocks(USACO).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/DFS/Clocks(USACO).cpp -------------------------------------------------------------------------------- /DFS/Is it a tree(SPOJ).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/DFS/Is it a tree(SPOJ).cpp -------------------------------------------------------------------------------- /DP/Edit Distance/Changing a string (CF).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/DP/Edit Distance/Changing a string (CF).cpp -------------------------------------------------------------------------------- /DP/Mixtures (Iterative).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/DP/Mixtures (Iterative).cpp -------------------------------------------------------------------------------- /DP/Mixtures (Recursive).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/DP/Mixtures (Recursive).cpp -------------------------------------------------------------------------------- /Euler - Directed Graph/Catenyms (UVA).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Euler - Directed Graph/Catenyms (UVA).cpp -------------------------------------------------------------------------------- /Euler - Undirected Graph/Fence (USACO).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Euler - Undirected Graph/Fence (USACO).cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/README.md -------------------------------------------------------------------------------- /Week 1.1/Clocks (USACO).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 1.1/Clocks (USACO).cpp -------------------------------------------------------------------------------- /Week 1.1/Is it a tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 1.1/Is it a tree.cpp -------------------------------------------------------------------------------- /Week 1.1/Knight Moves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 1.1/Knight Moves.cpp -------------------------------------------------------------------------------- /Week 1.2/Catenyms (UVA).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 1.2/Catenyms (UVA).cpp -------------------------------------------------------------------------------- /Week 1.2/Changing a string (CF).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 1.2/Changing a string (CF).cpp -------------------------------------------------------------------------------- /Week 1.2/Fence (USACO).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 1.2/Fence (USACO).cpp -------------------------------------------------------------------------------- /Week 1.2/Mixtures (Iterative).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 1.2/Mixtures (Iterative).cpp -------------------------------------------------------------------------------- /Week 1.2/Mixtures (SPOJ).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 1.2/Mixtures (SPOJ).cpp -------------------------------------------------------------------------------- /Week 2.1/AggCows(Spoj).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.1/AggCows(Spoj).cpp -------------------------------------------------------------------------------- /Week 2.1/Marbles(1)-SPOJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.1/Marbles(1)-SPOJ.cpp -------------------------------------------------------------------------------- /Week 2.1/Marbles(2)-SPOJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.1/Marbles(2)-SPOJ.cpp -------------------------------------------------------------------------------- /Week 2.1/Pie(SPOJ).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.1/Pie(SPOJ).cpp -------------------------------------------------------------------------------- /Week 2.1/Race Time(CodeChef).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.1/Race Time(CodeChef).cpp -------------------------------------------------------------------------------- /Week 2.2/Matrix Exponentiation/code 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.2/Matrix Exponentiation/code 1.cpp -------------------------------------------------------------------------------- /Week 2.2/Matrix Exponentiation/code 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.2/Matrix Exponentiation/code 2.cpp -------------------------------------------------------------------------------- /Week 2.2/Probability with BF/code 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.2/Probability with BF/code 1.cpp -------------------------------------------------------------------------------- /Week 2.2/Probability with BF/code 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.2/Probability with BF/code 2.cpp -------------------------------------------------------------------------------- /Week 2.2/Probability with BF/code 3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.2/Probability with BF/code 3.cpp -------------------------------------------------------------------------------- /Week 2.2/Probability with DP/code 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.2/Probability with DP/code 1.cpp -------------------------------------------------------------------------------- /Week 2.2/Probability with DP/code 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.2/Probability with DP/code 2.cpp -------------------------------------------------------------------------------- /Week 2.2/Probability with DP/code 3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 2.2/Probability with DP/code 3.cpp -------------------------------------------------------------------------------- /Week 3.1/code 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 3.1/code 1.cpp -------------------------------------------------------------------------------- /Week 3.1/code 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khaled-Hedaya/Fegla-Pre-Senior-Training-2021/HEAD/Week 3.1/code 2.cpp --------------------------------------------------------------------------------