This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"flag" | |
"io" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"sync" | |
"time" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Most general options | |
set autowrite | |
set mouse=a | |
" Show line numbers | |
set number | |
" Show line numbers relative to current position | |
set relativenumber |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_exponent_func(k): | |
def exponent(n): | |
return k ** n | |
return exponent | |
def get_poly_func(k): | |
def poly(n): | |
return n ** k | |
return poly | |