Fix the shell script with the fewest keystrokes!
Start file
#!/bin/bash
a = 5
b = 10
sum = $a + $b
echo $sum
mul = $a * $b
echo $mul
End file
#!/bin/bash
a=5
b=10
sum=$((a + b))
echo $sum
mul=$((a * b))
echo $mul
2,4c2,4
< a = 5
< b = 10
< sum = $a + $b
---
> a=5
> b=10
> sum=$((a + b))
7c7
< mul = $a * $b
---
> mul=$((a * b))
Unlock
20 remaining solutions by
signing in and submitting your own entry
589 active golfers, 2544 entries
26
10/20/2023 at 01:32AM
27
10/20/2023 at 01:25AM
27
10/20/2023 at 01:27AM
28
10/20/2023 at 01:13AM
29
10/20/2023 at 01:04AM
30
10/20/2023 at 01:00AM
31
10/20/2023 at 12:59AM
32
10/20/2023 at 12:53AM
32
10/20/2023 at 12:55AM
32
10/20/2023 at 12:59AM
35
10/20/2023 at 12:52AM
37
10/20/2023 at 12:51AM
39
10/20/2023 at 12:49AM
40
10/20/2023 at 12:46AM
43
10/20/2023 at 12:44AM
60
10/20/2023 at 12:40AM
63
10/20/2023 at 12:20AM
64
10/20/2023 at 12:39AM
67
10/20/2023 at 12:38AM
101
10/20/2023 at 12:18AM