Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions 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. You don't to print answer or take inputs.

 

Attached below are the driver codes provided.  DO NOT MAKE ANY CHANGES TO THE DRIVER CODES!!

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
expand button
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
expand button
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
Check Mark
Knowledge Booster
Background pattern image
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education