]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/rosetta-code/n-queens/n-queens.factor
Switch to https urls
[factor.git] / extra / rosetta-code / n-queens / n-queens.factor
index 99952f1928980fedda345967ee23d0677c18e43a..2c77b5fa11475dc230bf6d3f705dfe0f390e8454 100644 (file)
@@ -1,9 +1,9 @@
 ! Copyright (c) 2012 Anonymous
-! See http://factorcode.org/license.txt for BSD license.
+! See https://factorcode.org/license.txt for BSD license.
 USING: kernel sequences math math.combinatorics formatting io ;
 IN: rosetta-code.n-queens
 
-! http://rosettacode.org/wiki/N-queens_problem
+! https://rosettacode.org/wiki/N-queens_problem
 
 ! Solve the eight queens puzzle. You can extend the problem to
 ! solve the puzzle with a board of side NxN.