Covering some basic topics I haven't seen elsewhere on Cody.
Given an input matrix, generate an output matrix that consists of the input matrix replicated in a 2 by 2 pattern Examples:
[1] -> [1 1 1 1]
[1 2 -> [1 2 1 2 3 4] 3 4 3 4 1 2 1 2 3 4 3 4]
Project Euler: Problem 8, Find largest product in a large string of numbers
196 Solvers
Back to basics 3 - Temp Directory
277 Solvers
Back to basics 17 - white space
209 Solvers
Celsius to Fahrenheit converter
280 Solvers
Matlab Basics II - Count rows in a matrix
179 Solvers