id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

orion.a.smith@gmail.com hcs-strings > apcsaStringsGimmeLastN
prev  |  next  |  chance

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)

public String apcsaStringsGimmeLastN(String str, int n) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 130

Copyright Nick Parlante 2017 - privacy