ehartford commited on
Commit
4209d6f
1 Parent(s): fee670d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -25,7 +25,7 @@ Here is a recipe for Mai Tai:\n\n1:
25
  > 3 parts rum, 2: 3 parts pineapple juice, 3: half a cup of lime juice, 4: 6 to 8 fresh or frozen pineapple chunks, 5: crushed ice.
26
  > Mix all ingredients except ice and pour into glasses with ice. Garnish with a pineapple slice.
27
 
28
- Here is an implementation of 2-sum in golang:\n\n```go
29
  > func twoSum(nums []int, target int) []int {
30
  > if len(nums) <= 1 { return nil }
31
  > m := map[int] bool{}
@@ -37,7 +37,7 @@ Here is an implementation of 2-sum in golang:\n\n```go
37
  > }}
38
  > return nil
39
  > }
40
- > ```
41
 
42
 
43
  # Output should be [2,3] because that' is the position of where 4+4 =8 exists in our list
 
25
  > 3 parts rum, 2: 3 parts pineapple juice, 3: half a cup of lime juice, 4: 6 to 8 fresh or frozen pineapple chunks, 5: crushed ice.
26
  > Mix all ingredients except ice and pour into glasses with ice. Garnish with a pineapple slice.
27
 
28
+ Here is an implementation of 2-sum in golang:\n\n\`\`\`go
29
  > func twoSum(nums []int, target int) []int {
30
  > if len(nums) <= 1 { return nil }
31
  > m := map[int] bool{}
 
37
  > }}
38
  > return nil
39
  > }
40
+ > \`\`\`
41
 
42
 
43
  # Output should be [2,3] because that' is the position of where 4+4 =8 exists in our list