├── .gitignore ├── 1a.c ├── 1b.c ├── 1c.c ├── 2a.c ├── 2b.c ├── 3a.c ├── 3b.c ├── 3c.c ├── 4a.c ├── 4b.c ├── 5a.c ├── 5b.c ├── 6a.c ├── 6b.c └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | target -------------------------------------------------------------------------------- /1a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/1a.c -------------------------------------------------------------------------------- /1b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/1b.c -------------------------------------------------------------------------------- /1c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/1c.c -------------------------------------------------------------------------------- /2a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/2a.c -------------------------------------------------------------------------------- /2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/2b.c -------------------------------------------------------------------------------- /3a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/3a.c -------------------------------------------------------------------------------- /3b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/3b.c -------------------------------------------------------------------------------- /3c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/3c.c -------------------------------------------------------------------------------- /4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/4a.c -------------------------------------------------------------------------------- /4b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/4b.c -------------------------------------------------------------------------------- /5a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/5a.c -------------------------------------------------------------------------------- /5b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/5b.c -------------------------------------------------------------------------------- /6a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/6a.c -------------------------------------------------------------------------------- /6b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/6b.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SarthakDandotiya/Parallel-and-Distributed-Computing/HEAD/README.md --------------------------------------------------------------------------------