Skip to content

Instantly share code, notes, and snippets.

View DiegoGallegos4's full-sized avatar
🏠
Working from home

Diego Gallegos DiegoGallegos4

🏠
Working from home
View GitHub Profile
import 'package:flutter/material.dart';
import 'package:letutor/mock_data.dart';
class BookAppointment extends StatelessWidget {
@override
Widget build(BuildContext context) {
var title = Padding(
padding: EdgeInsets.only(top: 20.0, left: 12.0),
child: Text(
"Create Appointment",
import 'package:flutter/material.dart';
class OneBorderContainer extends StatefulWidget {
@override
_OneBorderState createState() => _OneBorderState();
}
class _OneBorderState extends State<OneBorderContainer> {
@override
Widget build(BuildContext context) {
@DiegoGallegos4
DiegoGallegos4 / genetic.py
Created August 5, 2019 18:55
Genetic Algorithm
import operator
import random
# an individual with bigger fitness is more likely to succeed.
def fitness(password, test_word):
if len(test_word) != len(password):
return
score = 0
for i in range(len(password)):
@DiegoGallegos4
DiegoGallegos4 / algo.py
Created August 5, 2019 17:44 — forked from howCodeORG/algo.py
howCode's Simple Genetic Algorithm in Python
import random
population = 200
generations = 0
mutation = 0.01
alphabet = "abcdefghijklmnopqrstuvwxyz! "
target = "subscribe to howcode!"
output = ""
data = []
@DiegoGallegos4
DiegoGallegos4 / binary_search_tree.py
Created April 24, 2019 15:14
Binary Search Tree
class TreeNode:
def __init__(self, key, parent=None, left=None, right=None):
self.key = key
self.parent = parent
self.left = left
self.right = right
class BinarySearchTree:
def __init__(self):
self.root = None
@DiegoGallegos4
DiegoGallegos4 / heap.py
Last active April 21, 2019 05:01
Binary Heap
class BinaryMaxHeap:
def __init__(self):
self.size = -1
self.heap = []
def parent(self, i):
return (i - 1) // 2
def left_child(self, i):
return 2 * i + 1
@DiegoGallegos4
DiegoGallegos4 / dynamic_array.py
Last active April 19, 2019 01:49
Dynamic Array (Vector)
import ctypes
class DynamicArray:
def __init__(self):
self.capacity = 1
self.size = 0
self.array = self._make_array(self.capacity)
def append(self, elt):
if self.size == self.capacity:
@DiegoGallegos4
DiegoGallegos4 / lifo_fifo.py
Created April 17, 2019 22:55
Stack and Queue
class Stack:
def pop(self):
pass
def top(self):
pass
def push(self, key):
pass
@DiegoGallegos4
DiegoGallegos4 / doubly_linked_list.py
Last active April 17, 2019 23:36
Doubly-Linked List
class Node:
def __init__(self, key, next=None, prev=None):
self.key = key
self.next = next
self.prev = prev
class DoublyLinkedList:
def __init__(self, head=None):
self.head = None
self.tail = None
class BinaryTree:
def __init__(self, key, left=None, right=None):
self.key = key
self.left = left
self.right = right
def insert_left(self, key):
if self.left:
node = BinaryTree(key)
node.left = self.left