I'm playing with codingbat.com, and I found this really easy problem to solve, so I started trying to play newbie code golf.
Given a non-empty string and an int n, return a new string where the char at index n has been removed. The value of n will be a valid index of a char in the original string (i.e. n will be in the range 0..len(str)-1 inclusive).
missing_char('kitten', 1) → 'ktten'
missing_char('kitten', 0) → 'itten'
missing_char('kitten', 4) → 'kittn'
Das Code:
def missing_char(str, n):
return ''.join(' '.join(str).split().remove(str[n]))
Oddly, Python won't interpret this.
Why not?
stris a bad name for an identifier, since it hides thebuilt-in str– Johnsyweb Oct 25 '11 at 2:52.remove()removes the first matching item from a list. Your code would fail for, say,strng='killing'andn=4. Also you could make a list from a string easily withlist(strng). – Avaris Oct 25 '11 at 3:09stris a bad name for golf, since it is more than one character – gnibbler Oct 25 '11 at 3:33