I hereby claim:
- I am jackhowa on github.
- I am jackhowa (https://keybase.io/jackhowa) on keybase.
- I have a public key ASCUXVHzVA6AAyNB0dM69_Olu_PS8QZH-JkKOtnRDseuEgo
To claim this, I am signing this object:
def count11(seq): | |
# define this function and return the number of occurrences as a number | |
# define int for occurences of num | |
occurences = 0 | |
# loop through each element | |
# get length of seq | |
seq_length = len(seq) |
{ | |
"eslint.alwaysShowStatus": true, | |
"eslint.format.enable": true, | |
"eslint.lintTask.enable": true, | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"[scss]": { | |
"editor.codeActionsOnSave": { |
const MONTH_NAMES = [ | |
'January', | |
'February', | |
'March', | |
'April', | |
'May', | |
'June', | |
'July', | |
'August', | |
'September', |
def main(): | |
portnames = ["PAN", "AMS", "CAS", "NYC", "HEL"] | |
# generate list of 1, 2, 3, 4 | |
check = range(1,5) | |
port1 = 0 | |
for port2 in range(1, 5): | |
for port3 in range(1, 5): | |
for port4 in range(1, 5): | |
for port5 in range(1, 5): |
I hereby claim:
To claim this, I am signing this object:
(function Home(){ | |
"use strict"; | |
var startStopBtn; | |
var fibsList; | |
var worker; | |
document.addEventListener("DOMContentLoaded",ready,false); | |
import React, { useState } from "react"; | |
import { ANIMALS } from "@frontendmasters/pet"; | |
const SearchParams = () => { | |
// api limited to seattle and sf | |
const [location, setLocation] = useState("Seattle, WA"); | |
const [animal, setAnimal] = useState("dog"); | |
const [breed, setBreed] = useState(""); | |
return ( |
'use strict'; | |
/** | |
* Count the number of anagrams in a list of words. | |
* | |
* An anagram is a word made up of the same letters as another word in the array (but not |
'use strict'; | |
/** | |
* Find the greatest common divisor (GCD) of two positive integers. | |
* | |
* @param {number} a - The first integer |