Complete the function nthRowOfPascalTriangle() which takes n, as input parameters and returns an array representing the answer.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Complete the function nthRowOfPascalTriangle() which takes n, as input parameters and returns an array representing the answer. The elements can be large so return it modulo 109 + 7.

Attached in the images are the driver codes that have already been provided.

19
20
21-// { Driver Code Starts.
22
23
24 - void printAns (vector<1l> &ans) {
25 -
for (auto &x : ans) {
cout << x << " ";
}
cout << "\n";
26
27
28
29 }
30
31 - int main() {
int t;
cin >> t;
32
33
while (t--) {
int n;
34-
35
36
cin >> n;
Solution ob;
auto ans = ob.nthRowofPascalTriangle(n);
printAns (ans);
37
38
39
40
Transcribed Image Text:19 20 21-// { Driver Code Starts. 22 23 24 - void printAns (vector<1l> &ans) { 25 - for (auto &x : ans) { cout << x << " "; } cout << "\n"; 26 27 28 29 } 30 31 - int main() { int t; cin >> t; 32 33 while (t--) { int n; 34- 35 36 cin >> n; Solution ob; auto ans = ob.nthRowofPascalTriangle(n); printAns (ans); 37 38 39 40
1-// { Driver Code Starts
2 #include <bits/stdc++.h>
4 using namespace std;
5 #define 1l long long
6.
// } Driver Code Ends
8 // #define 11 long long
9 - class Solution{
10 public:
vector<ll> nthRowofPascalTriangle(int n)
{
//code here
11
12 -
13
14
15
};
16
17
18 };
19
20
21 -// { Driver Code starts.
22
23
Transcribed Image Text:1-// { Driver Code Starts 2 #include <bits/stdc++.h> 4 using namespace std; 5 #define 1l long long 6. // } Driver Code Ends 8 // #define 11 long long 9 - class Solution{ 10 public: vector<ll> nthRowofPascalTriangle(int n) { //code here 11 12 - 13 14 15 }; 16 17 18 }; 19 20 21 -// { Driver Code starts. 22 23
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education