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
""" | |
Submit this code at: https://www.hackerrank.com/challenges/the-minion-game | |
""" | |
def match(text, pattern): | |
""" | |
>>> match('banana', 'ana') | |
2 | |
""" | |
return sum([1 for i in range(len(text)) if text[i:i+len(pattern)] == pattern]) |
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
__author__ = 'Rafeh' | |
""" | |
Program: recursive_vs_iterative | |
Description: This program contains a few common iterative functions and their solutions. More importantly, | |
it also contains their counter-part recursive functions and their solutions. This is important in visualizing | |
side by side the differences between iterative implementations and recursive implementations of a given function. | |
Notice that recursive solutions tend to be more elegant! | |
Version: 3.4 | |
""" |
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
{% extends 'base.html' %} | |
{% block title %} Video | {% endblock %} | |
<script> | |
{% block jquery %} | |
// Do this once before resizing | |
var parent_id = $('iframe').parent().attr('id'); | |
if (parent_id === 'youtubeVideo') { | |
$('iframe').addClass('embed-responsive-item'); |
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
/* | |
Compare Objects | |
Consider the following example. | |
{ name: 'zeke' } === { name: 'zeke' } | |
What do you think the output will be? You might assume `true`. It is, however, false. This isn't a mistake, its intentional. Every object is unique from every other object. The usefulness of this will become clear over time. But, it does make it difficult to know if objects contain the same data. | |
Right now you're going to write a function that determines if two objects contain the same data. |
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
library(httr) | |
require(httpuv) | |
require(jsonlite) | |
# 1. Find OAuth settings for github: | |
# http://developer.github.com/v3/oauth/ | |
oauth_endpoints("github") | |
# 2. To make your own application, register at at | |
# https://github.com/settings/applications. Use any URL for the homepage URL |
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
prompt("Do you want an annoying pop up"); | |
x=1; | |
while (x<15){ | |
confirm("Annoying pop up"); | |
x=x+1; | |
}; | |
confirm("ok your done"); |
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
""" | |
Author: Rafeh Qazi | |
Create a student class that models a student. | |
Date: 11/26/2015 | |
Function_Based_Gist: https://gist.github.com/Rafeh01/4a6d6b79eee4caf6b799 | |
Update: 11/27/2015 | |
Final_Gist: https://gist.github.com/Rafeh01/57fc4c710bf9322d75db | |
Key Features: | |
1. Class | |
2. Class Object Counter |
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
""" | |
Author: Rafeh Qazi | |
Create a student class that models a student. | |
Date: 11/26/2015 | |
Function_Based_Gist: https://gist.github.com/Rafeh01/4a6d6b79eee4caf6b799 | |
Update: 11/27/2015 | |
Final_Gist: | |
Key Features: | |
1. Class | |
2. Class Object Counter |
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
""" | |
Author: Rafeh Qazi | |
Create a student class that models a student. | |
Date: 11/26/2015 | |
""" | |
from collections import namedtuple | |
def all_student_results(students_file): | |
""" |
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
""" | |
Author: Rafeh Qazi | |
Create a student class that models a student. | |
Date: 11/26/2015 | |
""" | |
from collections import namedtuple | |
class Student: | |
student_counter = 0 |