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
package main | |
//Naive approach | |
func twoSumNaive(numbers []int, target int) []int { | |
var toReturn = []int{} | |
for i := 0; i < len(numbers); i++ { | |
var current = numbers[i] | |
var toFind = target - current | |
for j := i + 1; j < len(numbers); j++ { | |
if numbers[j] == toFind { |
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
/* | |
white - FFFEFC | |
darker white - E2E3DF | |
greyish - 515B5E | |
darker greyish - 2E3233 | |
green - CAF200 | |
*/ | |
body {font-family:Lucida Grande ,Helvetica, Arial, Verdana; width: 80%; margin: 0 auto; color: #FFFEFC;background-color: #515B5E} | |
ul {list-style: none;} |
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
body { | |
color: black; | |
font-family: Futura; | |
width: 80%; | |
margin: 0 auto; | |
} | |
a { | |
color: white; |
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
body { | |
font-family: Futura, sans-serif; | |
width: 70%; | |
margin: 0 auto; | |
} | |
a { | |
text-decoration: none; | |
color: orange; | |
} |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
body { | |
font-family: Futura; | |
} | |
a { | |
text-decoration: none; | |
color: orange; |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.nav { | |
background: #7C5329; | |
background: linear-gradient(1deg, #7C5329, #3E2A14); | |
height: 150px; | |
} | |
.bar { | |
height: 60px; |
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
<body> | |
<div class="main"> | |
<div class="header"> | |
<div class="header_resize"> | |
<div class="logo"> | |
<h1><a href="index.html">Beczar Music Society<small>Good music and good vibes</small></a></h1> | |
</div> | |
<div class="menu_nav"> | |
<ul> | |
<li class="active"><a href="/"><span>Home</span></a></li> |
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
/* crack */ | |
.right { | |
float: right; | |
} | |
.main { | |
width: 80%; | |
margin: 0 auto; | |
font-family: Futura; | |
background: #f06; |
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
/* crack */ | |
.right { | |
float: right; | |
} | |
.main { | |
width: 80%; | |
margin: 0 auto; | |
font-family: Futura; | |
background: #f06; |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.main { | |
font-family: Futura; | |
background: #f06; | |
background: linear-gradient(50deg, #f06, yellow); | |
min-height: 900px; | |
} |