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
""" | |
Arithmetic puzzle solver. You are given a sequence of four digits, say 1,2,3,4, | |
and your job is to combine them with ordinary arithmetic operations (+, -, ×, and ÷) | |
in any order to make a target number. E.g. 24 = 1 * 2 * 3 * 4 or 24 = (1 + 2 + 3) * 4. | |
Some 'hard' problems from https://blog.plover.com/math/17-puzzle.html: | |
1. Given 6, 6, 5, 2, get 17. | |
2. Given 3, 3, 8, 8, get 24. | |
""" |
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 main | |
import ( | |
"fmt" | |
"log" | |
"math" | |
"os" | |
"sort" | |
"strconv" | |
"strings" |
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
-990 [2] = -(1 + (989)) | |
-989 [2] = -((1) * (989)) | |
-988 [1] = 1 - (989) | |
-976 [5] = -((1 - (sqrt(9))) ^ (8) + (((sqrt(9))!)!)) | |
-960 [4] = (1 - (9)) * ((8 - (sqrt(9)))!) | |
-918 [4] = -(198) - (((sqrt(9))!)!) | |
-912 [5] = ((1 + (sqrt(9)))!) * (-(8)) - (((sqrt(9))!)!) | |
-900 [5] = (sqrt(sqrt((1 + (9)) ^ (8)))) * (-(9)) | |
-891 [2] = (1 + (98)) * (-(9)) | |
-890 [2] = (1 + (9)) * (-(89)) |
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 main | |
import ( | |
"fmt" | |
"math" | |
"os" | |
"strconv" | |
) | |
type Op int64 // Operators |
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
-988 = 1 - (989) | |
-960 = (1 - (9)) * ((8 - (sqrt(9)))!) | |
-881 = 1 - ((98) * (9)) | |
-873 = (1 - (98)) * (9) | |
-839 = 1 - (((sqrt(9))!)! + (8 - (sqrt(9)))!) | |
-817 = 1 - (98) - (((sqrt(9))!)!) | |
-808 = 1 - (((sqrt(9))!)! + 89) | |
-800 = 1 - (sqrt(sqrt((9) ^ (8))) + ((sqrt(9))!)!) | |
-791 = 1 - ((9) * (8)) - (((sqrt(9))!)!) | |
-784 = (1 - (9)) * (8) - (((sqrt(9))!)!) |
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
-988 = 1 - (989) | |
-960 = (1 - (9)) * ((8 - (sqrt(9)))!) | |
-881 = 1 - ((98) * (9)) | |
-873 = (1 - (98)) * (9) | |
-817 = 1 - (98) - (((sqrt(9))!)!) | |
-800 = 1 - ((9) * (89)) | |
-791 = 1 - ((9) * (8)) - (((sqrt(9))!)!) | |
-784 = (1 - (9)) * (8) - (((sqrt(9))!)!) | |
-743 = 1 - ((sqrt(9)) * (8)) - (((sqrt(9))!)!) | |
-736 = 1 - (9 + 8) - (((sqrt(9))!)!) |
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 main | |
import ( | |
"bytes" | |
"fmt" | |
"strings" | |
"code.google.com/p/go.net/html" | |
"code.google.com/p/go.net/html/atom" | |
) |
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 main | |
import ( | |
"bytes" | |
"fmt" | |
"log" | |
"net/mail" | |
enmime "github.com/jhillyerd/go.enmime" | |
) |
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
randomPoints[n_] := RandomSample[Block[{nn = Ceiling[Sqrt[n]]}, | |
Flatten[Table[{i, j}, {i, 1, nn}, {j, 1, nn}], 1]], n]; | |
(* n is number of moves = 2 * number of points *) | |
randomBoard[n_] := Module[ | |
{points = randomPoints[2 n]}, | |
Join[ | |
Take[points, n] /. {x_, y_} -> black[x, y], | |
Take[points, -n] /. {x_, y_} -> white[x, y] | |
]] |
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
tables <- SQLQuery(" | |
select TABLE_NAME as table_name | |
from cs_reporting.information_schema.tables | |
where table_type = 'BASE TABLE'") | |
sizes <- rbindlist(lapply(tables$table_name, function(x) SQLQuery(paste0("sp_spaceused [", x, "]")))) | |
StripKB <- function(x) as.integer(str_replace_all(x, ' KB', '')) | |
sizes[, reserved := StripKB(reserved)] |
NewerOlder