Questions and Answers
Problems and Solutions
Quotes help make search much faster. Example: "Practice Makes Perfect"
Tuesday, November 27, 2012
Codecademy: "Review: Modules"
//sample solution
from math import sqrt
val = sqrt(13689)
print val
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
This is an example of
scrolling text
using Javascript.
Popular Posts
(no title)
Question: The total power dissipation in an RL series circuit is due to which component? Answer: The total power dissipation is due to ...
Array Element Tally
Say you had an election, and you needed to tally the votes for each candidate. All you need to do is enter the name of each candidate o...
What is the area of a regular myriagon (10000-sided polygon)?
Type in the length of the side of a myriagon: meters Compute
What is the area of a regular dodecagon (12-sided polygon)?
Type in the length of the side of a dodecagon: meters Compute
Codecademy Learn R Review 10/10
#Sample Solution --- title: "Data Cleaning in R" output: html_notebook --- ```{r message=FALSE, warning=FALSE} # load libra...
Codecademy Learn Phaser: Basics Draw A Sprite 3/12
//Sample Solution function preload() { // Load in the sprite here! this.load.image('codey','https://s3.amazonaws.com/codeca...
Codecademy Learn Phaser: Basics Draw A Background Image 4/12
//Sample Solution function preload() { // Load in the background image here! this.load.image('sky','https://s3.amazonaws.c...
Codecademy Quantiles Common Quantiles 4/5
#Sample Solution --- title: "Quantiles" output: html_notebook --- ```{r} # load song data load("songs.Rda") ```...
What is the area of a regular octadecagon (18-sided polygon)?
Type in the length of the side of an octadecagon: meters Compute
Codecademy: Arbitrary number of arguments
#sample solution m = 5 n = 13 #function goes here def myFun(*x): sum = 0 for index in range(0,len(x)): sum = sum + x[index] r...
No comments:
Post a Comment