Saturday 16 December 2023

         L 

      L L L 

   L L L L L 

  L L L L L L L 

L L L L L L L L L


import java.util.*;

public class MyFirstClass {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        for(int i = 1 ; i<=n ; i++)

        { 

            for(int j = i+1; j<=n; j++)

            {

                System.out.print(" ");

            }

            for(int j = 1; j<=i; j++)

            {

                System.out.print("L");

            }

            for(int j = 1; j<i; j++)

            {

                System.out.print("L");

            }

            System.out.println();

        }

    }

}




No comments:

Post a Comment

Good thoughtful question on Binary search on answers

Problem link:  https://leetcode.com/problems/maximize-score-of-numbers-in-ranges/description/ Solution: //import java.util.Arrays; class So...