#Big O notation
##Learning Objectives
- understand what big O notation is
- understand examples of
- O(1)
- O(n)
- O(n^2)
- O(log n)
require 'rails_helper' | |
RSpec.describe Ninja, :type => :model do | |
let(:subject1) { Ninja.new(secret_name: "Joe") } | |
let(:subject2) { Ninja.new(name: "Akira")} | |
it "responds to name" do | |
expect(subject1).to respond_to(:name) | |
end | |
it "is invalid without a name" do |
#Big O notation
##Learning Objectives
#Big O notation
##Learning Objectives
#Binary Search Trees/Recursion
###Learning Objectives
#Binary Search Trees/Recursion
###Learning Objectives
require 'httparty' | |
require_relative './passwords' | |
# blank array to hold usernames | |
usernames = [] | |
#create blank array to hold HTTParty get threads | |
username_threads = [] | |
(32..34).each do |num| |
#Scaling a rails app
##Learning Objectives
#Intro to Golang
###What is go
###set up
#Intro to Golang
###What is go
###set up