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

 

orion.a.smith@gmail.com apcsa-encryption > apcsaDecryptFromAlphaNums
prev  |  next  |  chance

Given an ArrayList of Integer values representing positions in the alphabet ('A'==0, 'B'==1, ..., 'Z'==25), restore the original uppercase characters and build them into an output String.


apcsaDecryptFromAlphaNums([0, 1, 2]) → "ABC"
apcsaDecryptFromAlphaNums([23, 24, 25]) → "XYZ"
apcsaDecryptFromAlphaNums([5, 4, 4, 3, 19, 7, 4, 12, 4, 19, 4, 17]) → "FEEDTHEMETER"

...Save, Compile, Run (ctrl-enter)

public String apcsaDecryptFromAlphaNums(ArrayList<Integer> nums) { }

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: 310

Copyright Nick Parlante 2017 - privacy