Skip to content

Instantly share code, notes, and snippets.

View ShonnyAIO's full-sized avatar
🌐
Discovering

Jonathan Torres ShonnyAIO

🌐
Discovering
View GitHub Profile
@RuolinZheng08
RuolinZheng08 / backtracking_template.py
Last active November 20, 2025 09:28
[Algo] Backtracking Template & N-Queens Solution
def is_valid_state(state):
# check if it is a valid solution
return True
def get_candidates(state):
return []
def search(state, solutions):
if is_valid_state(state):
solutions.append(state.copy())
@phatnguyenuit
phatnguyenuit / ChampionsLeagueTeams.js
Created September 15, 2020 07:36
HackerRank: JavaScript (Basic) on 15th Sep 2020
const https = require('https');
const fetch = (url) => {
return new Promise((resolve, reject) => {
https
.get(url, (resp) => {
let data = '';
// A chunk of data has been recieved.
resp.on('data', (chunk) => {
@bmaupin
bmaupin / free-database-hosting.md
Last active December 10, 2025 14:18
Free database hosting
@parmentf
parmentf / GitCommitEmoji.md
Last active December 10, 2025 12:05
Git Commit message Emoji
@xombra
xombra / bancos
Last active July 15, 2024 17:05
Codigo y Bancos correspondientes de Venezuela
Banco:
<select name="banco">
<option value=""></option>
<option value="0156">100%BANCO</option>
<option value="0196">ABN AMRO BANK</option>
<option value="0172">BANCAMIGA BANCO MICROFINANCIERO, C.A.</option>
<option value="0171">BANCO ACTIVO BANCO COMERCIAL, C.A.</option>
<option value="0166">BANCO AGRICOLA</option>
<option value="0175">BANCO BICENTENARIO</option>
<option value="0128">BANCO CARONI, C.A. BANCO UNIVERSAL</option>