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
package ae.ftech.quraan.Utility.arabicfont; | |
import android.graphics.Color; | |
import android.text.SpannableString; | |
import android.text.Spanned; | |
import android.text.style.ForegroundColorSpan; | |
/** | |
* Created by arshadbinhamza on 11/27/16. | |
*/ |
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
from random import shuffle | |
import heapq | |
def main(): | |
# puzzles = [] | |
# while len(puzzles) < 100: | |
# puzzles.append(generate_solvable_puzzle()) | |
node = Node(generate_solvable_puzzle(), None) | |
print(node) |