Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...
5년 초과 전
문제를 풀었습니다
Find the Oldest Person in a Room
Given two input vectors:
* |name| - user last names
* |age| - corresponding age of the person
Return the name of the ol...
5년 초과 전
문제를 풀었습니다
Sudoku Solver - Standard 9x9
Solve a Standard 9x9 <http://en.wikipedia.org/wiki/Sudoku Sudoku>. Values 1 thru 9 occur in each row, column, and the nine non-o...
5년 초과 전
문제를 풀었습니다
GJam 2014 China Rd B: Sudoku Checker
This Challenge is derived from <http://code.google.com/codejam/contest/2929486/dashboard#s=p0 GJam 2014 China Sudoku>. Large Cas...
5년 초과 전
문제를 풀었습니다
Sudoku square
We have a small Sudoku square, but one number is missing.
x = [ 1 5 4
8 6 3
0 9 7 ]
Make a function, wher...
5년 초과 전
문제를 풀었습니다
Check to see if a Sudoku Puzzle is Solved
*Description:*
Your task, should you choose to accept it, is to make a function that checks to see if a 9x9 matrix of integer...
5년 초과 전
문제를 풀었습니다
Solve the Sudoku Row
*Description*
A simple yet tedious task occurs near the end of most Sudoku-solving algorithms, computerized or manual. The ta...
5년 초과 전
문제를 풀었습니다
Magic!
Check whether the input matrix is a normal magic square:
<http://en.wikipedia.org/wiki/Magic_square>
Output the logical va...
5년 초과 전
문제를 풀었습니다
Find common elements in matrix rows
Given a matrix, find all elements that exist in every row.
For example, given
A =
1 2 3 5
9 2 5 9
3 2 5 9
...
5년 초과 전
문제를 풀었습니다
Times 2 - START HERE
Try out this test problem first.
Given the variable x as your input, multiply it by two and put the result in y.
Examples:...