Skip to content

Commit c698f28

Browse files
authored
Update PascalTriangle.java
1 parent c792737 commit c698f28

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/main/java/com/thealgorithms/maths/PascalTriangle.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@ public class PascalTriangle {
3333
*
3434
*/
3535

36-
public static void main (String[] args) {
37-
Scanner sc = new Scanner(System.in);
38-
int n = sc.nextInt();
39-
printPascal(n);
40-
}
41-
4236
public static int[][] pascal(int n)
4337
{
4438
/**

0 commit comments

Comments
 (0)