This file contains 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
class ContactsTree { | |
var root: Node | |
init() { | |
root = Node(Character("\0")) | |
root.isRoot = true | |
} |
This file contains 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
extension StringProtocol { | |
var splitByString: [SubSequence] { | |
return self.split(separator: " ") | |
} | |
func seperateByCharacter(_ char: Character) -> [SubSequence] { | |
return self.split(separator: char) | |
} | |
} |
This file contains 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
// | |
// LoginRegisterViewController.m | |
// CookBook | |
// | |
// Created by Jagdeep Matharu on 2017-01-23. | |
// Copyright © 2017 Jagdeep Matharu. All rights reserved. | |
// | |
#import "LoginRegisterViewController.h" |
This file contains 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
* { margin: 0; padding: 0;} | |
body { | |
position: relative;} | |
.container {width: 970px;margin: 0 auto;padding-top: 70px;transition: ease 0.3s all; | |
-webkit-transition: ease 0.3s all;} | |
.container h1, h6 {text-align: center;color: #696969; font-family: tahoma;} | |
h6 {color:#BDBDBD; margin-bottom: 30px} | |
h6 a {text-decoration: none;color:#95A4B8;} | |
h6 a:hover {color:#6180A8;} | |
.bill {background: #f1cb48; |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Minions</title> | |
<link rel="stylesheet" type="text/css" href="css/minions.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Minions are here!!</h1> |
This file contains 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
<!-- Evil Starts Here --> | |
<div class="evil"> | |
<ul class="evil_hair"> | |
<li class="eh1"></li> | |
<li class="eh2"></li> | |
<li class="eh3"></li> | |
<li class="eh4"></li> | |
<li class="eh5"></li> | |
</ul> | |
<div class="eyes"> |
This file contains 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
<!-- Jerry Starts Here --> | |
<div class="jerry"> | |
<div class="lights"> | |
<span class="white_light"></span> | |
<span class="dark_light"></span> | |
</div> | |
<div class="jerry_hair"> | |
<ul> | |
<li class="h1"></li> | |
<li class="h2"></li> |
This file contains 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
<!-- Bill starts here --> | |
<div class="bill"> | |
<div class="lights"> | |
<span class="white_light"></span> | |
<span class="dark_light"></span> | |
</div> | |
<div class="hair"> | |
<span class="hair1"></span> | |
<span class="hair1 make_it_left_hair1"></span> | |
<span class="hair2"></span> |