├── .gitignore ├── README.md └── Task1 ├── aritra_and_alternating_series ├── ekam.cpp ├── shounak.cpp └── shreyansh.java ├── camelCase ├── ekam.cpp ├── shounak.py └── shreyansh.java ├── color_me_surprised ├── aritra.py ├── shounak.cpp └── shreyansh.java ├── disrupted ├── ekam.cpp ├── shounak.cpp └── shreyansh.java ├── post_5_9 ├── ekam.cpp ├── shounak.cpp └── shreyansh.java └── single_digit_sum ├── shounak.cpp └── shreyansh.java /.gitignore: -------------------------------------------------------------------------------- 1 | *.class -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/README.md -------------------------------------------------------------------------------- /Task1/aritra_and_alternating_series/ekam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/aritra_and_alternating_series/ekam.cpp -------------------------------------------------------------------------------- /Task1/aritra_and_alternating_series/shounak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/aritra_and_alternating_series/shounak.cpp -------------------------------------------------------------------------------- /Task1/aritra_and_alternating_series/shreyansh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/aritra_and_alternating_series/shreyansh.java -------------------------------------------------------------------------------- /Task1/camelCase/ekam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/camelCase/ekam.cpp -------------------------------------------------------------------------------- /Task1/camelCase/shounak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/camelCase/shounak.py -------------------------------------------------------------------------------- /Task1/camelCase/shreyansh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/camelCase/shreyansh.java -------------------------------------------------------------------------------- /Task1/color_me_surprised/aritra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/color_me_surprised/aritra.py -------------------------------------------------------------------------------- /Task1/color_me_surprised/shounak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/color_me_surprised/shounak.cpp -------------------------------------------------------------------------------- /Task1/color_me_surprised/shreyansh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/color_me_surprised/shreyansh.java -------------------------------------------------------------------------------- /Task1/disrupted/ekam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/disrupted/ekam.cpp -------------------------------------------------------------------------------- /Task1/disrupted/shounak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/disrupted/shounak.cpp -------------------------------------------------------------------------------- /Task1/disrupted/shreyansh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/disrupted/shreyansh.java -------------------------------------------------------------------------------- /Task1/post_5_9/ekam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/post_5_9/ekam.cpp -------------------------------------------------------------------------------- /Task1/post_5_9/shounak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/post_5_9/shounak.cpp -------------------------------------------------------------------------------- /Task1/post_5_9/shreyansh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/post_5_9/shreyansh.java -------------------------------------------------------------------------------- /Task1/single_digit_sum/shounak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/single_digit_sum/shounak.cpp -------------------------------------------------------------------------------- /Task1/single_digit_sum/shreyansh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylan007/winter-resources/HEAD/Task1/single_digit_sum/shreyansh.java --------------------------------------------------------------------------------