Questions and Answers
Problems and Solutions
Quotes help make search much faster. Example: "Practice Makes Perfect"
Wednesday, November 28, 2012
Codecademy: More With 'for'
#sample solution
start_list = [5, 3, 1, 2, 4]
square_list = []
# Your code here
for number in start_list:
square_list.append(number**2)
square_list.sort()
print square_list
1 comment:
WEB_SURFER 3000
December 21, 2016 at 4:09 PM
Danks!
Reply
Delete
Replies
Reply
Add comment
Load more...
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
This is an example of
scrolling text
using Javascript.
Popular Posts
Codecademy Sample Solution: Codeyear Eliminating Unnecessary HTML
<style> p { margin: 0px; padding-left: 10%; padding-right: 10%; text-align: justify; border-style: dashed;...
Codeyear: Deal It Out
//sample solution // Card Constructor function Card(num1,num2) { //properties var suit = num1; var number = num2; //methods ...
Codecademy: Codeyear Conditionals
//sample solution var gender = "female"; if (gender === "female") { result = true; } else { result = false; ...
Codeschool Cliffs of Value Modulus Sample Solution
Find an expression using two values and the modulus operator that results as 4 Answer: 32%7
How long do undisturbed fingerprints last in a crime scene?
Years
Codecademy > Learn Java > ArrayList: Manipulation Sample Solution
import java.util.ArrayList; public class Temperatures { public static void main(String[] args) { ArrayList<Integer> weeklyTem...
#Codeschool Backbone.js Sample Solution to Define Render
var AppointmentView = Backbone.View.extend({ render: function() { var html = '<li>' + this.model.get('title')...
Codecademy: "And"
#sample solution # boolean_1 = 77 < 78 && 77 < 77 boolean_1 = false # boolean_2 = true && 100 >= 100 boolea...
Codecademy: The bin() function
#sample solution print bin(1) print bin(2) print bin(3) print bin(4) print bin(5)
What is the area of a regular hendecagon (11-sided polygon)?
Type in the length of the side of a hendecagon: meters Compute
Danks!
ReplyDelete