Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.

Ch-5,8,12,15,18,19 #1117

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions challengers-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
8 changes: 8 additions & 0 deletions contributors/Mrjoy832/Mrjoy832.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
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
---
7 changes: 7 additions & 0 deletions contributors/Mrjoy832/git-solutions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Challenge 18 - 2 Gists

- [C++ Coding](https://gist.github.com/Mrjoy832/df6bb16f3bb32faaaa5f68c9150477c8)
- [Code Snippet](https://gist.github.com/Mrjoy832/bcfb0aeba9539152f70e3a8b0b93295e)



20 changes: 20 additions & 0 deletions contributors/Mrjoy832/pattern.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/* Copyright (c) 2022, <Tridib Bag>
* All rights reserved
*/
#include <iostream>

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;
}