I hereby claim:
- I am jeffersoncarvalh0 on github.
- I am jeffersoncrvlh (https://keybase.io/jeffersoncrvlh) on keybase.
- I have a public key ASD_fgmupExOYFb88QaugbhVhlv-xOdonHSmZyZsCoFR-go
To claim this, I am signing this object:
| def merge( A, B ): | |
| if empty( A ): | |
| return B | |
| if empty( B ): | |
| return A | |
| if A[ 0 ] < B[ 0 ]: | |
| return concat( A[ 0 ], merge( A[ 1...A_n ], B ) ) | |
| else: | |
| return concat( B[ 0 ], merge( A, B[ 1...B_n ] ) ) |
| def factorial( n ): | |
| if n == 1: | |
| return 1 | |
| return n * factorial( n - 1 ) |
| Operador de comparação assintótica | Operador de comparaço numérica | |
|---|---|---|
| Nosso algorítmo é o( alguma coisa ) | Um número é < alguma coisa | |
| Nosso algorítmo é O( alguma coisa ) | Um número é ≤ alguma coisa | |
| Nosso algorítmo é Θ( alguma coisa ) | Um número é = alguma coisa | |
| Nosso algorítmo é Ω( alguma coisa ) | Um número é ≥ alguma coisa | |
| Nosso algorítmo é ω( alguma coisa ) | Um número é > alguma coisa |
| b = [] | |
| n.times do | |
| m = a[ 0 ] | |
| mi = 0 | |
| a.each_with_index do |element, i| | |
| if element < m | |
| m = element | |
| mi = i | |
| end | |
| end |
| bool duplicate = false; | |
| for ( int i = 0; i < n; ++i ) { | |
| for ( int j = 0; j < n; ++j ) { | |
| if ( i != j && A[ i ] == A[ j ] ) { | |
| duplicate = true; | |
| break; | |
| } | |
| } | |
| if ( duplicate ) { | |
| break; |
| <?php | |
| $exists = false; | |
| for ( $i = 0; $i < n; ++$i ) { | |
| if ( $A[ $i ] == $value ) { | |
| $exists = true; | |
| break; | |
| } | |
| } | |
| ?> |
| var M = A[ 0 ]; | |
| for ( var i = 0; i < n; ++i ) { | |
| if ( A[ i ] >= M ) { | |
| M = A[ i ]; | |
| } | |
| } |
| call plug#begin() | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'leafgarland/typescript-vim' | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' | |
| Plug 'reasonml-editor/vim-reason-plus' | |
| Plug 'hzchirs/vim-material' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' |
| call plug#begin() | |
| Plug 'Valloric/YouCompleteMe', { 'do': './install.py' } | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'leafgarland/typescript-vim' | |
| Plug 'peitalin/vim-jsx-typescript' | |
| Plug 'airblade/vim-gitgutter' | |
| Plug 'tpope/vim-surround' |
I hereby claim:
To claim this, I am signing this object: