You are viewing a single comment's thread. Return to all comments →
My Java solution with o(n^2) time complexity and o(1) space complexity:
public static void staircase(int n) { // goal: print staircase with a base of size n for(int i = 1; i <= n; i++) System.out.println(" ".repeat(n - i) + "#".repeat(i)); }
Seems like cookies are disabled on this browser, please enable them to open this website
Staircase
You are viewing a single comment's thread. Return to all comments →
My Java solution with o(n^2) time complexity and o(1) space complexity: