A Pen by Kelly Lawrence on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header id="header"> | |
<nav id="nav-bar"> | |
<img id="header-img" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7Uh54h5LQwbC-SyGShwXkaLqyArji4OES8Q&usqp=CAU" alt="Black Diamond logo"> | |
<a | |
id="features-nav" | |
class="nav-link" | |
href="#features-label"> | |
Features</a> | |
<a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<article> | |
<header> | |
<h1 id="title">Pamela Shanti Pack<h1> | |
<h2><em>The high priestess of offwidth climbing</em><br><hr> | |
<div id="img-div"> | |
<img id="image" src="https://www.maximropes.com/fileadmin/user_upload/Team/Pamela_Shanti_Pack/pamela-shanti-pack-climbing2-491x397.jpg" alt="Photo of Pamela Pack hanging from a large roof crack"> | |
<p id="img-caption">Pamela Pack locks her feet into a roof crack.</p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html id="start"> | |
<header> | |
<title>Kelly Lawrence Personal Portfolio</title> | |
</header> | |
<body> | |
<div id="night"> | |
<section id="far-mountains"> | |
<div id="far-mountain-1"></div> | |
<div id="far-mountain-2"></div> | |
<div id="far-mountain-3"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Palindrome Checker</title> | |
</head> | |
<body> | |
<!-- Title and form are wrapped in two divs .main and .wrapper to allow for vertical alignment styling within css so mobile sites don't seem so "short". --> | |
<div class = "main"> | |
<div class = "wrapper"> | |
<h1>Palindrome Checker</h1> | |
<h3>A palindrome is a word or phrase that reads the same backwards as forwards. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header id="header"> | |
<nav id="nav-bar"> | |
<img id="header-img" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7Uh54h5LQwbC-SyGShwXkaLqyArji4OES8Q&usqp=CAU" alt="Black Diamond logo"> | |
<div class="nav-links"> | |
<a | |
id="features-nav" | |
class="nav-link" | |
href="#features-label"> | |
Features</a> |
A Pen by Kelly Lawrence on CodePen.
I hereby claim:
- I am lawrencek1992 on github.
- I am lawrencek1992 (https://keybase.io/lawrencek1992) on keybase.
- I have a public key ASAhSmuTAROknzW6Wo563JX_HwzkKaE3ZXJLAeavlEqXPQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Implement a hash map in python without the use of dict() | |
""" | |
from typing import List | |
class Item: | |
def __init__(self, key, value): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import collections | |
class UndirectedGraph: | |
def __init__(self): | |
self.graph = {} | |
def add_vertex(self, vertex): | |
if not vertex in self.graph: |
OlderNewer