This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
findNQueens = function(nSize){ | |
//make an array, and fill it with ordered numbers to n | |
var rows = []; | |
// rows will have 0 - n pushed to it, non inclusive | |
for (var i = 0; i < n; i++){ | |
rows.push(i); | |
} | |
// final array that gets returned | |
var results = []; | |
// storage for what we currently have |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Sprite Sheet Renderer by Corey Wolff | |
--Currently this is setup to use automatically spit out a sprite sheet to a specific location based on the | |
--CreateProject and CreateAsset script I made. It also wants to then have Unity chop up the sprite sheet. | |
--If people are intersted I could modify this to be a more generic version. | |
studioLib() | |
drvLibGame() | |
NewerOlder