Simple format (2)
try again!
Start file
a==b equal to a!=b not equal to a>b greater than a>=b greater than or equal to a<b less than a<=b less than or equal to
End file
a == b equal to a != b not equal to a > b greater than a >= b greater than or equal to a < b less than a <= b less than or equal to
View Diff
1,6c1,6 < a==b equal to < a!=b not equal to < a>b greater than < a>=b greater than or equal to < a<b less than < a<=b less than or equal to --- > a == b equal to > a != b not equal to > a > b greater than > a >= b greater than or equal to > a < b less than > a <= b less than or equal to
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 68 remaining solutions by signing in and submitting your own entry
#69 Jurica / @Jurica34581259 - Score: 53 - 11/19/18 @ 20:35
:%s/^/\t<CR>:%s/ /\t\t<CR>:%s/a/a /<CR>:%s/b/ b<CR>kllli <Esc>kki <Esc>ZZ
0 comments