Skip to content

Instantly share code, notes, and snippets.

View sudocrystal's full-sized avatar

Crystal Hess sudocrystal

View GitHub Profile

Epic List of Interview Questions

modified from: http://katemats.com/interview-questions/

Below is a list of software engineer skills or areas that can be tested and evaluated in an interview context. Use the list below to help you get started, and you’ll soon be developing your own favorite questions and competencies for interviews. There are so many creative ways to test and evaluate skills when building your team – so let’s get started!

Table of Contents

@sudocrystal
sudocrystal / resume-example.md
Last active October 27, 2016 17:19
Jane Doe Resume

Jane Doe

One sentence objective statement - include acknowledgment of transitional phase and how they could use previous experience in future roles

Contact Information

  • Contact Info

Coding Projects

  • Description of capstone
@sudocrystal
sudocrystal / mergesort.rb
Created July 23, 2015 16:52
Starting ground for mergesort in ruby
def mergesort(a)
# if the array size is 0|1 then the list is considered sorted, return sorted
# split the list in half
# merge sort each half
# combine the sorted halves
end
def split_array(a)
# find the middle
# take = Returns first n elements from the array.
@sudocrystal
sudocrystal / recurse.rb
Last active August 29, 2015 14:25
Recursion Practice - Ruby
def fact(n)
end
def fib(n)
end
def pal(s)
end
# Factorial Tests
@sudocrystal
sudocrystal / level6.rb
Last active August 29, 2015 14:22
Ruby Warrior - Crystal
class Player
@health
@wall
def play_turn(warrior)
# cool code goes here
if look_for_captives(warrior) == false
if warrior.health < 20
if rest_or_run(warrior) == false
move_or_attack(warrior)
end