Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
23answers
3k views

Code-golf: generate pascal's triangle

Generate a list of lists (or print, I don't mind) a Pascal's Triangle of size N with the least lines of code possible! Here goes my attempt (118 characters in python 2.6 using a trick): ...
4
votes
3answers
327 views

Centering Pascal's Triangle Output in C++

I have successfully written a code to output Pascal's Triangle in a somewhat triangular shape using cout.width(total_rows - current_row), but it looks like this: 1 1 1 ...
4
votes
2answers
1k views

Pascal Triangle Recursive Program optimization in C++

I have built recursive function to compute Pascal's triangle values. Is there a way to optimize it? Short reminder about Pascal's triangle: C(n, k) = C(n-1, k-1) + C(n-1, k) My code is: int ...
3
votes
2answers
238 views

Best way to generate pascal's triangle (of two mentioned ways)

I have an programming assignment in Java. I have implemented it by making an nCr ( http://en.wikipedia.org/wiki/Combination ) function then using a double for loop to make the triangle by printing it ...
2
votes
1answer
95 views

What's wrong with my pascal's triangle?

I've been looking for some simple coding challenges recently, and discovered about Pascal's triangle (here), and I've tried to generate one myself in C/Objective-C. For those that don't know what it ...
2
votes
3answers
441 views

Pascal's triangle in C with combinations

#include <stdio.h> long factorial(int num) { int counter; int fact = 1; for (counter = num; counter > 0; counter--) fact *= counter; return fact; } float combinations(int n, ...
2
votes
5answers
410 views

Formatting Pascal's triangle

I am currently working on a homework assignment to generate what is known as Pascal's triangle in Python. So far, this is what I have: def mytri(myrange): trianglevar = [[1]] for i in ...
1
vote
3answers
81 views

Pascal's Triangle returning nonsense values

This is a homework project I was assigned some time ago... I've been successful in getting this far on my own, and the only hiccup I have left is (I believe) an issue with data types and overflow. ...
1
vote
1answer
643 views

variant of pascal's triangle in haskell - problem with lazy evaluation

To solve some problem I need to compute a variant of the pascal's triangle which is defined like this: f(1,1) = 1, f(n,k) = f(n-1,k-1) + f(n-1,k) + 1 for 1 <= k < n, f(n,0) = 0, f(n,n) = ...
1
vote
4answers
3k views

C++ Pascal's triangle

I'm looking for an explanation for how the recursive version of pascal's triangle works The following is the recursive return line for pascal's triangle. int get_pascal(const int row_no,const int ...
1
vote
2answers
258 views

Pascal's triangle in Prolog

I have written a function for returning the next row in Pascal's triangle given the current row: pascal_next_row([X],[X]). pascal_next_row([H,H2|T],[A|B]):- pascal_next_row([H2|T],B), A is H ...
0
votes
0answers
118 views

Draw Pascal's triangle in PASCAL Programming like a diamond

How I can draw a Pascal's triangle in PASCAL Programming like a diamond from n number which we get that from input? Edit: This program I tried: program Pascal_triangle; var i,j,n : integer; A : ...
0
votes
0answers
157 views

Real world Uses of Pascal's triangle in programming

What are the real world Uses of Pascal's Triangle in programming. Google's search and wikipedia is also not much helpful. I think it is better to ask in community so, thats it. Thanks.
0
votes
2answers
155 views

why is there a SIGFPE?

for some reason, it used to work. but now i get a SIGFPE.....what's wrong? #include "usefunc.h" long factorial(long num) { if (num > 1) { long counter; long fact = 1; ...
-3
votes
3answers
118 views

error in c++ main file int expression

I am making a new program in c++ i get the current error expected primary-expression before ‘int’ about this line p1::pascals_triangle(int depth);