Skip to content

Instantly share code, notes, and snippets.

View macmullensantiago's full-sized avatar
🎯
Focusing

macmullensantiago macmullensantiago

🎯
Focusing
View GitHub Profile
@macmullensantiago
macmullensantiago / backtracking_template.py
Created August 3, 2022 15:27 — forked from RuolinZheng08/backtracking_template.py
[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())
import { useEffect, useState } from 'react';
import { Flex, Select, Box, Text, Input, Spinner, Icon, Button } from '@chakra-ui/react';
import { useRouter } from 'next/router';
import { MdCancel } from 'react-icons/md';
import Image from 'next/image';
import { filterData, getFilterValues } from '../utils/filterData';
import { baseUrl, fetchApi } from '../utils/fetchApi';
import noresult from '../assets/images/noresult.svg';
@macmullensantiago
macmullensantiago / ruta.txt
Created October 15, 2021 23:35 — forked from codigoconjuan/ruta.txt
Ruta para descargar MySQL
https://dev.mysql.com/downloads/windows/installer/5.7.html