Skip to content

Instantly share code, notes, and snippets.

View endersonmenezes's full-sized avatar
:octocat:
Focusing

Enderson Menezes (Mr. Enderson) endersonmenezes

:octocat:
Focusing
View GitHub Profile
@endersonmenezes
endersonmenezes / arvore_binaria.py
Created June 17, 2021 18:33
Arvore Binária que Adivinha Número de 0 a 100
# Busca Binária de 0 - 100 (Número Inteiros)
def pesquisa_binaria(numero, lista):
baixo = 0
alto = len(lista) - 1
contador = 0
while baixo <= alto:
contador += 1
meio = round((baixo + alto) / 2)
chute = lista[meio]
@endersonmenezes
endersonmenezes / keybase.md
Created October 15, 2021 19:08
keybase.md

Keybase proof

I hereby claim:

  • I am endersonmenezes on github.
  • I am enderson (https://keybase.io/enderson) on keybase.
  • I have a public key ASAxIp9Pb0rf7bwUPdo6shH8GRZ8BRvFysDue-IynLrGFgo

To claim this, I am signing this object:

### Keybase proof
I hereby claim:
* I am endersonmenezes on github.
* I am enderson (https://keybase.io/enderson) on keybase.
* I have a public key ASBqrtZ2-HWzhzlVz5DG85LpubNpGjejmysJ-uZNlk88Cwo
To claim this, I am signing this object:
@endersonmenezes
endersonmenezes / appscript-getjson.js
Last active February 20, 2024 22:49
* Original Script: https://gist.github.com/paulgambill/cacd19da95a1421d3164 * Modified by: Enderson Menezes * Modified Date: 2023-05-31
/**
* Original Script: https://gist.github.com/paulgambill/cacd19da95a1421d3164
* Modified by: Enderson Menezes
* Modified Date: 2023-05-31
*
* For the complete documentation of this script, please visit the original script page.
*
* Modifications made:
* - Added Headers Option
* - To use: =IMPORTJSON("https://api.opsgenie.com/v1/incidents", "","","Authorization:Baerer Token")