Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
297 Bytes
public class Pattern{
public static void main(String[] args){
int n = 3;
for(int i = n; i>0;i--){
for(int j = n; j>0; j--){
for(int k = 1;k<=i;k++ ){
System.out.print(j+" ");
}
}
System.out.print("$");
}
}
}