Real Vim ninjas count every keystroke - do you?

Pick a challenge, fire up Vim, and show us what you got.

Changelog, Rules & FAQ, updates: @vimgolf, RSS.

Your VimGolf key: please sign in

$ gem install vimgolf
$ vimgolf setup
$ vimgolf put 9v0066d8266e000000000367

Search different SQL column with similar where clause

Replace a column in the where clause and convert all numbers from text to numeric, by replacing the leading 0 with the code 359.

Start file
SELECT * FROM numbers WHERE local_number IN (
	"058307327",
	"058307328",
	"058307329"
)
End file
SELECT * FROM numbers WHERE int_number IN (
	35958307327,
	35958307328,
	35958307329
)

View Diff

1,4c1,4
< SELECT * FROM numbers WHERE local_number IN (
< 	"058307327",
< 	"058307328",
< 	"058307329"
---
> SELECT * FROM numbers WHERE int_number IN (
> 	35958307327,
> 	35958307328,
> 	35958307329

Solutions by @brett-collins_cbhq:

Unlock 7 remaining solutions by signing in and submitting your own entry
Created by: @stoyandimov

45 active golfers, 168 entries

Solutions by @brett-collins_cbhq:
22
#7 - Brett Collins / @brett-collins_cbhq

10/03/2024 at 06:43PM

23
#>18 - Brett Collins / @brett-collins_cbhq

10/03/2024 at 06:42PM

24
#>21 - Brett Collins / @brett-collins_cbhq

10/03/2024 at 06:40PM

25
#>26 - Brett Collins / @brett-collins_cbhq

10/03/2024 at 06:38PM

26
#>29 - Brett Collins / @brett-collins_cbhq

10/03/2024 at 06:36PM

27
#>32 - Brett Collins / @brett-collins_cbhq

10/03/2024 at 04:27PM

29
#>35 - Brett Collins / @brett-collins_cbhq

10/03/2024 at 03:43PM