Generate a very basic Python constructor (fixed)
Original by @BiddulphCaleb (http://www.vimgolf.com/challenges/6019f1c4642668000cee11e8) - had some extra spaces in output file.
Start file
def __init__(self, x, y, z, rotation, color, bounciness, walking_speed, running_speed, health, defense, age, type1, type2):
End file
def __init__(self, x, y, z, rotation, color, bounciness, walking_speed, running_speed, health, defense, age, type1, type2): self.x = x self.y = y self.z = z self.rotation = rotation self.color = color self.bounciness = bounciness self.walking_speed = walking_speed self.running_speed = running_speed self.health = health self.defense = defense self.age = age self.type1 = type1 self.type2 = type2
View Diff
1a2,14 > self.x = x > self.y = y > self.z = z > self.rotation = rotation > self.color = color > self.bounciness = bounciness > self.walking_speed = walking_speed > self.running_speed = running_speed > self.health = health > self.defense = defense > self.age = age > self.type1 = type1 > self.type2 = type2
Solutions
The best way to learn is to practice. Below, you will find some of the solutions other golfers have entered. To unlock higher ranked solutions, submit your own entry which does as well or better than the solutions you can currently see - climb the ladder!
Check out these helpful resources to improve your Vim skills... Game on.
Unlock 270 remaining solutions by signing in and submitting your own entry
#271 铃舟 / @lingzhouVII - Score: 711 - 04/14/22 @ 13:45
jjjjjjjjjjjjjjjlllllllllllllllddidef __init__(self, x, y, z, rotation, color, bounciness, walking_speed, running_speed, health, defense, age, type1, type2):<CR> self.x = x<CR> self.y = y<CR> self.z = z<CR> self.rotation = rotation<CR> self.color = color<CR> self.bounciness = bounciness<CR> self.walking_speed = walking_speed<CR> self.running_speed = running_speed<CR> self.health = health<CR> self.defense = defense<CR> self.age = age<CR> self.type1 = type1<CR> self.type2 = type2<Esc>kkkkkkkkkkk0lllllllli<BS><BS><BS><BS><Esc>jhhhhhhhh.u4xi<Tab><BS> <Esc>jllllllllllhhhhhhhhhhhhhd00d0lllllllllllhhi<BS><BS><BS><BS><BS><BS><BS><BS><BS><BS><CR><Esc>kxjxhhhhhjxxjxxxjkxxxjxxxxx i <Esc>jxxxxxxxjxxxxxxxi <Esc>jkxjixxxxxxxxx<BS><BS><BS><BS><BS><BS><BS><BS><BS><Esc>xxxxxxxxjxxxxxxi <Esc>jxxxxxxxxxjxxxxxxxxxxi <Esc>:wq<CR>
0 comments