Skip to content

Instantly share code, notes, and snippets.

View rajeshpudota's full-sized avatar

Rajesh Pudota rajeshpudota

View GitHub Profile
@rajeshpudota
rajeshpudota / .eslintrc.js
Created February 10, 2022 00:31 — forked from adrianhall/.eslintrc.js
A sample .eslintrc file
var OFF = 0, WARN = 1, ERROR = 2;
module.exports = exports = {
"env": {
"es6": true
},
"ecmaFeatures": {
// env=es6 doesn't include modules, which we are using
"modules": true
@rajeshpudota
rajeshpudota / merge-sort.go
Created May 24, 2021 18:13
Go: merge-sort.go
package main
import "fmt"
func main() {
elements := []int{9, 3, 7, 5, 6, 4, 8, 2}
result := mergeSort(elements)
fmt.Println(result)
}