about | help | code help+videos | done | prefs |
Given an input String and an int n, return a String containing the last n characters of the input (in order). Precondition: the input will have at least n characters. HINT You will need the length() and substring() methods to solve this problem.apcsaStringsGimmeLastN("Wave hello", 5) → "hello" apcsaStringsGimmeLastN("Wave hello", 2) → "lo" apcsaStringsGimmeLastN("Wave goodbye", 7) → "goodbye" ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 130
Copyright Nick Parlante 2017 - privacy