{"id":24021092,"url":"https://github.com/zipcodecore/numberstrianglestables","last_synced_at":"2025-06-20T00:03:17.825Z","repository":{"id":55540951,"uuid":"105726380","full_name":"ZipCodeCore/NumbersTrianglesTables","owner":"ZipCodeCore","description":null,"archived":false,"fork":false,"pushed_at":"2024-10-28T18:38:00.000Z","size":55,"stargazers_count":0,"open_issues_count":35,"forks_count":69,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-15T21:39:30.748Z","etag":null,"topics":["corejava","corejava-chapter3","corejava-chapter3-section10","corejava-chapter3-section8"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZipCodeCore.png","metadata":{"files":{"readme":"README-NumberUtilities.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-10-04T02:56:19.000Z","updated_at":"2024-10-28T18:38:04.000Z","dependencies_parsed_at":"2025-04-16T10:18:15.423Z","dependency_job_id":null,"html_url":"https://github.com/ZipCodeCore/NumbersTrianglesTables","commit_stats":null,"previous_names":["zipcodecore/numberstrianglestables"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/ZipCodeCore/NumbersTrianglesTables","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipCodeCore%2FNumbersTrianglesTables","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipCodeCore%2FNumbersTrianglesTables/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipCodeCore%2FNumbersTrianglesTables/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipCodeCore%2FNumbersTrianglesTables/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZipCodeCore","download_url":"https://codeload.github.com/ZipCodeCore/NumbersTrianglesTables/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipCodeCore%2FNumbersTrianglesTables/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260852083,"owners_count":23072585,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["corejava","corejava-chapter3","corejava-chapter3-section10","corejava-chapter3-section8"],"created_at":"2025-01-08T12:38:38.024Z","updated_at":"2025-06-20T00:03:12.776Z","avatar_url":"https://github.com/ZipCodeCore.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NumberUtilities\n* Ensure each of the test cases in the class [NumberUtilitiesTest](https://github.com/Zipcoder/CR-MicroLabs-Loops-NumbersTrianglesTables/blob/master/src/test/java/io/zipcoder/microlabs/mastering_loops/NumberUtilitiesTest.java) successfully passes upon completion of each of the method stubs in the class [NumberUtilities](https://github.com/Zipcoder/CR-MicroLabs-Loops-NumbersTrianglesTables/blob/master/src/main/java/io/zipcoder/microlabs/mastering_loops/NumberUtilities.java).\n    * `String getEvenNumbers(int start, int stop)` \n    * `String getOddNumbers(int start, int stop)`\n    * `String getSquareNumbers(int start, int stop, int step)` \n    * `String getRange(int start, int stop, int step)` \n    * `String getExponentiations(int start, int stop, int step, int exponent)` \n    \n\n\n\n\n\n\n\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n## `String getRange(int stop)`\n* **Description**\n    * Given an integer, `stop`, return a `String` concatenation of all integers between `0` up to and not including `stop`.\n### Example\n* Sample Script\n\n    ```\n    // : Given\n    int stop = 11;\n    \n    // : When\n    String outcome = NumberUtilities.getRange(stop);\n    \n    // : Then\n    System.out.println(outcome);\n    ```\n\n\n\n* Sample Output\n\n    ```\n    012345678910\n    ```\n\n\n\n\n\n\n\n\n\n\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n## `String getRange(int start, int stop)`\n* **Description**\n    * Given two integers, `start`, and `stop`, return a `String` concatenation of all integers between `start` up to and not including `stop`.\n### Example\n* Sample Script\n\n    ```\n    // : Given\n    int start = 5;\n    int stop = 11;\n    \n    // : When\n    String outcome = NumberUtilities.getRange(start, stop);\n    \n    // : Then\n    System.out.println(outcome);\n    ```\n\n\n\n* Sample Output\n\n    ```\n    5678910\n    ```\n\n\n\n\n\n\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n## `String getRange(int start, int stop, int step)`\n* **Description**\n    * Given three integers, `start`, `stop`, and `step` return a `String` concatenation of all integers between `start`, incrementing by `step`, up to and not including `stop`.\n### Example\n* Sample Script\n\n    ```\n    // : Given\n    int start = 5;\n    int stop = 20;\n    int step = 5;\n    \n    // : When\n    String outcome = NumberUtilities.getRange(min, max, step);\n    \n    // : Then\n    System.out.println(outcome);\n    ```\n\n\n\n* Sample Output\n\n    ```\n    51015\n    ```\n    \n    \n    \n\n\n\n\n\n\n\n\n\n\n\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n## `String getEvenNumbers(int start, int stop)`\n* **Description**\n    * Given two integers, `start`, and `stop`, return a `String` concatenation of all even integers between `start` up to and not including `stop`.\n### Example\n* Sample Script\n\n    ```\n    // : Given\n    int start = 5;\n    int stop = 20;\n    \n    // : When\n    String outcome = NumberUtilities.getOddNumbers(min, max);\n    \n    // : Then\n    System.out.println(outcome);\n    ```\n\n\n\n* Sample Output\n\n    ```\n    681012141618\n    ```\n    \n\n\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n## `String getOddNumbers(int start, int stop)`\n* **Description**\n    * Given two integers, `start`, and `stop`, return a `String` concatenation of all even integers between `start` up to and not including `stop`.\n### Example\n* Sample Script\n\n    ```\n    // : Given\n    int start = 5;\n    int stop = 20;\n    \n    // : When\n    String outcome = NumberUtilities.getOddNumbers(min, max);\n    \n    // : Then\n    System.out.println(outcome);\n    ```\n\n\n\n* Sample Output\n\n    ```\n    5791113151719\n    ```\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n## `String getSquareNumbers(int start, int stop)`\n* **Description**\n    * Given two integers, `start`, and `stop`, return a `String` concatenation of all values squared between `start` up to and not including `stop`.\n### Example\n* Sample Script\n\n    ```\n    // : Given\n    int start = 5;\n    int stop = 20;\n    \n    // : When\n    String outcome = NumberUtilities.getOddNumbers(min, max);\n    \n    // : Then\n    System.out.println(outcome);\n    ```\n\n\n\n* Sample Output\n\n    ```\n    25100225\n    ```\n    \n    \n    \n    \n\n\n\n\n\n\n\n\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n## `String getExponentiations(int start, int stop, int step, int exponent)`\n* **Description**\n    * Given four integers, `start`, `stop`, `step`, and `exponent`, return a `String` concatenation of all values, raised to the specified `exponent`, between `start` up to and not including `stop`, incrementing by the specified `step`.\n### Example\n* Sample Script\n\n    ```\n    // : Given\n    int start = 5;\n    int stop = 20;\n    int step = 5;\n    int exponent = 2;\n    \n    // : When\n    String outcome = NumberUtilities.getOddNumbers(min, max);\n    \n    // : Then\n    System.out.println(outcome);\n    ```\n\n\n\n* Sample Output\n\n    ```\n    25100225\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzipcodecore%2Fnumberstrianglestables","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzipcodecore%2Fnumberstrianglestables","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzipcodecore%2Fnumberstrianglestables/lists"}