DEV Community

Discussion on: Daily Challenge #202 - Complete the Pattern II

Collapse
 
edh_developer profile image
edh_developer

Java, with the assumption that the function is actually taking an integer, not a float.

        private static String pattern(int x) {

                StringBuffer sb = new StringBuffer("\n"),
                        result = new StringBuffer();

                for (int i = 1; i <= x; i++) {
                        sb.insert(0,i);
                        result.insert(0,sb.toString());
                }

                return result.toString();
        }