mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-21 11:10:08 +08:00
style: enable InvalidJavadocPosition
in checkstyle (#5237)
enable style InvalidJavadocPosition Co-authored-by: Samuel Facchinello <samuel.facchinello@piksel.com>
This commit is contained in:

committed by
GitHub

parent
39e065437c
commit
74e51990c1
@ -37,17 +37,17 @@ public final class PascalTriangle {
|
||||
*/
|
||||
|
||||
public static int[][] pascal(int n) {
|
||||
/**
|
||||
/*
|
||||
* @param arr An auxiliary array to store generated pascal triangle values
|
||||
* @return
|
||||
*/
|
||||
int[][] arr = new int[n][n];
|
||||
/**
|
||||
/*
|
||||
* @param line Iterate through every line and print integer(s) in it
|
||||
* @param i Represents the column number of the element we are currently on
|
||||
*/
|
||||
for (int line = 0; line < n; line++) {
|
||||
/**
|
||||
/*
|
||||
* @Every line has number of integers equal to line number
|
||||
*/
|
||||
for (int i = 0; i <= line; i++) {
|
||||
|
Reference in New Issue
Block a user