about | help | code help+videos | done | prefs |
Write a method that accepts a string of characters. The method then returns an array of strings where each string in the array contains the original string but with a missing character. The index of the array will match the position of the missing character from the original string. makeArray("abcd") → ["bcd", "acd", "abd", "abc"] makeArray("xyz") → ["yz", "xz", "xy"] makeArray("hi") → ["i", "h"] ...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: 250
Copyright Nick Parlante 2017 - privacy