From 9c218fe9e108263f3077484aecbaeacfe5a9d52e Mon Sep 17 00:00:00 2001 From: TRIDIB BAG Date: Sat, 17 Sep 2022 18:24:20 +0530 Subject: [PATCH 1/9] ch-16 Signed-off-by: TRIDIB BAG --- contributors/Mrjoy832/Mrjoy832.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 contributors/Mrjoy832/Mrjoy832.md diff --git a/contributors/Mrjoy832/Mrjoy832.md b/contributors/Mrjoy832/Mrjoy832.md new file mode 100644 index 000000000..10267ae89 --- /dev/null +++ b/contributors/Mrjoy832/Mrjoy832.md @@ -0,0 +1,6 @@ +--- +name: Tridib Bag +github_user_name: Mrjoy832 +url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/287 +your_favroite_programming_language: C++ +--- \ No newline at end of file From 158b6a72599d1e4133b826952fe885ee59833307 Mon Sep 17 00:00:00 2001 From: TRIDIB BAG Date: Mon, 19 Sep 2022 10:11:18 +0530 Subject: [PATCH 2/9] added challenge-18 gists Signed-off-by: TRIDIB BAG --- challengers-list.md | 1 + contributors/Mrjoy832/git-solutions.md | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 contributors/Mrjoy832/git-solutions.md diff --git a/challengers-list.md b/challengers-list.md index 2fb6f60ea..cda7a7358 100644 --- a/challengers-list.md +++ b/challengers-list.md @@ -2,3 +2,4 @@ 1. [Mrinal](https://github.com/mrinal1224) 2. [Shivay](https://github.com/shivaylamba) 3. [Raghav](https://github.com/raghavdhingra) +4. [TRIDIB](https://github.com/Mrjoy832) \ No newline at end of file diff --git a/contributors/Mrjoy832/git-solutions.md b/contributors/Mrjoy832/git-solutions.md new file mode 100644 index 000000000..bbec6a2a1 --- /dev/null +++ b/contributors/Mrjoy832/git-solutions.md @@ -0,0 +1,5 @@ +- Software Development Related Topic Gist: +https://gist.github.com/Mrjoy832/df6bb16f3bb32faaaa5f68c9150477c8 + +- Code Snippet Gist : +https://gist.github.com/Mrjoy832/bcfb0aeba9539152f70e3a8b0b93295e \ No newline at end of file From 115a74fbe888b188e92c2f92c53fadd5b44de6cd Mon Sep 17 00:00:00 2001 From: TRIDIB BAG Date: Tue, 20 Sep 2022 16:44:13 +0530 Subject: [PATCH 3/9] challenge-19 file Signed-off-by: TRIDIB BAG --- contributors/Mrjoy832/code.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 contributors/Mrjoy832/code.cpp diff --git a/contributors/Mrjoy832/code.cpp b/contributors/Mrjoy832/code.cpp new file mode 100644 index 000000000..a27dc333c --- /dev/null +++ b/contributors/Mrjoy832/code.cpp @@ -0,0 +1,17 @@ +#include + +int main() { + int rows; + + std::cout << "Enter number of rows: "; + std::cin >> rows; + + for (int i = rows; i >= 1; --i) { + for (int j = 1; j <= i; ++j) { + std::cout << j << " "; + } + std::cout << std::endl; + } + + return 0; +} \ No newline at end of file From f26fba92d27d6226d71151ef71145825db26ab70 Mon Sep 17 00:00:00 2001 From: TRIDIB BAG Date: Tue, 20 Sep 2022 16:52:25 +0530 Subject: [PATCH 4/9] challenge-19 file Signed-off-by: TRIDIB BAG --- contributors/Mrjoy832/code.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributors/Mrjoy832/code.cpp b/contributors/Mrjoy832/code.cpp index a27dc333c..77b525776 100644 --- a/contributors/Mrjoy832/code.cpp +++ b/contributors/Mrjoy832/code.cpp @@ -14,4 +14,4 @@ int main() { } return 0; -} \ No newline at end of file +} From 5b8a1e0b64e75b289ffda33d2211c498b1cde012 Mon Sep 17 00:00:00 2001 From: TRIDIB BAG Date: Tue, 20 Sep 2022 19:28:13 +0530 Subject: [PATCH 5/9] challenge-19 file Signed-off-by: TRIDIB BAG --- contributors/Mrjoy832/code.cpp | 17 ----------------- contributors/Mrjoy832/pattern.cpp | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 17 deletions(-) delete mode 100644 contributors/Mrjoy832/code.cpp create mode 100644 contributors/Mrjoy832/pattern.cpp diff --git a/contributors/Mrjoy832/code.cpp b/contributors/Mrjoy832/code.cpp deleted file mode 100644 index 77b525776..000000000 --- a/contributors/Mrjoy832/code.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include - -int main() { - int rows; - - std::cout << "Enter number of rows: "; - std::cin >> rows; - - for (int i = rows; i >= 1; --i) { - for (int j = 1; j <= i; ++j) { - std::cout << j << " "; - } - std::cout << std::endl; - } - - return 0; -} diff --git a/contributors/Mrjoy832/pattern.cpp b/contributors/Mrjoy832/pattern.cpp new file mode 100644 index 000000000..31d39a01d --- /dev/null +++ b/contributors/Mrjoy832/pattern.cpp @@ -0,0 +1,20 @@ +/* Copyright (c) 2022, + * All rights reserved + */ +#include + +int main() { + int rows; + + std::cout << "Enter number of rows: "; + std::cin >> rows; + + for (int i = rows; i >= 1; --i) { + for (int j = 1; j <= i; ++j) { + std::cout << j << " "; + } + std::cout << std::endl; + } + + return 0; +} \ No newline at end of file From 5155849c60607d667d577a2e6a1e231d5a8bd3c2 Mon Sep 17 00:00:00 2001 From: TRIDIB BAG Date: Tue, 20 Sep 2022 19:34:07 +0530 Subject: [PATCH 6/9] challenge-19 file Signed-off-by: TRIDIB BAG --- contributors/Mrjoy832/git-solutions.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/contributors/Mrjoy832/git-solutions.md b/contributors/Mrjoy832/git-solutions.md index bbec6a2a1..1e370542b 100644 --- a/contributors/Mrjoy832/git-solutions.md +++ b/contributors/Mrjoy832/git-solutions.md @@ -1,5 +1,7 @@ -- Software Development Related Topic Gist: -https://gist.github.com/Mrjoy832/df6bb16f3bb32faaaa5f68c9150477c8 +# Challenge 18 - 2 Gists + +- [C++ Coding](https://gist.github.com/Mrjoy832/df6bb16f3bb32faaaa5f68c9150477c8) +- [Code Snippet](https://gist.github.com/Mrjoy832/bcfb0aeba9539152f70e3a8b0b93295e) + + -- Code Snippet Gist : -https://gist.github.com/Mrjoy832/bcfb0aeba9539152f70e3a8b0b93295e \ No newline at end of file From 03e3d88a2d3caa3bd9a5dddc85c00cdaf81d696c Mon Sep 17 00:00:00 2001 From: TRIDIB BAG Date: Tue, 20 Sep 2022 19:42:44 +0530 Subject: [PATCH 7/9] challenge-19 file Signed-off-by: TRIDIB BAG --- contributors/Mrjoy832/pattern.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/contributors/Mrjoy832/pattern.cpp b/contributors/Mrjoy832/pattern.cpp index 31d39a01d..2ceec6d97 100644 --- a/contributors/Mrjoy832/pattern.cpp +++ b/contributors/Mrjoy832/pattern.cpp @@ -3,18 +3,21 @@ */ #include -int main() { +int main() +{ int rows; std::cout << "Enter number of rows: "; std::cin >> rows; - for (int i = rows; i >= 1; --i) { - for (int j = 1; j <= i; ++j) { - std::cout << j << " "; + for (int i = rows; i >= 1; --i) + { + for (int j = 1; j <= i; ++j) + { + std::cout << j << " "; } std::cout << std::endl; } - + return 0; -} \ No newline at end of file +} From 4dd0c395c7854d0ab35f05b66893f6cc6a27be61 Mon Sep 17 00:00:00 2001 From: TRIDIB BAG Date: Wed, 21 Sep 2022 14:19:01 +0530 Subject: [PATCH 8/9] linter error fix Signed-off-by: TRIDIB BAG --- contributors/Mrjoy832/pattern.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/contributors/Mrjoy832/pattern.cpp b/contributors/Mrjoy832/pattern.cpp index 2ceec6d97..7691c321f 100644 --- a/contributors/Mrjoy832/pattern.cpp +++ b/contributors/Mrjoy832/pattern.cpp @@ -3,17 +3,14 @@ */ #include -int main() -{ +int main() { int rows; std::cout << "Enter number of rows: "; std::cin >> rows; - for (int i = rows; i >= 1; --i) - { - for (int j = 1; j <= i; ++j) - { + for (int i = rows; i >= 1; --i) { + for (int j = 1; j <= i; ++j) { std::cout << j << " "; } std::cout << std::endl; From b1c5eae8863deb7acfd6a73bc4d88a414f5ed398 Mon Sep 17 00:00:00 2001 From: TRIDIB BAG Date: Fri, 23 Sep 2022 11:07:06 +0530 Subject: [PATCH 9/9] added ch-22 Signed-off-by: TRIDIB BAG --- contributors/Mrjoy832/Mrjoy832.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contributors/Mrjoy832/Mrjoy832.md b/contributors/Mrjoy832/Mrjoy832.md index 10267ae89..51309eb2f 100644 --- a/contributors/Mrjoy832/Mrjoy832.md +++ b/contributors/Mrjoy832/Mrjoy832.md @@ -3,4 +3,6 @@ name: Tridib Bag github_user_name: Mrjoy832 url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/287 your_favroite_programming_language: C++ +your_hosted_github_pages_link: https://mrjoy832.github.io/Meditation-App/ +your_hosted_github_pages_repository_link: https://github.com/Mrjoy832/Meditation-App --- \ No newline at end of file