-
Take an absolute path and reduce it: /a/b/../foo.txt -> /a/foo.txt, /a/../b/./foo.txt -> /b/foo.txt
-
You are given an array representing integer. Write a function which increments this integer. Example: input [1,2,3] -> output [1,2,4] which represents 123 + 1 = 124
-
Given an unbalanced binary tree, write code to select a node at random (each node has an equal probability of being selected).
View password-keeper-rules.bolt
This file contains 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
path /users/$uid { | |
read() = isCurrentUser($uid); | |
write() = isCurrentUser($uid); | |
} | |
path /users/$uid/$password is Password; | |
type Password { | |
service: String, | |
password: String, |
View moviequote-rules.bolt
This file contains 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
path /quotes { | |
write() = true; | |
read() = true; | |
} | |
path /quotes/$moviequote is Moviequote; | |
type Moviequote { | |
movie: String, | |
quote: String |
View godist.rb
This file contains 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
#! /usr/bin/env ruby | |
if not ARGV[0] or ARGV[0] == "-h" | |
puts "Usage: ./go_dist <project>" | |
exit | |
end | |
project_path = ARGV[0] | |
project = project_path.split('/')[-1] | |
puts "\e[1mStarting distribution of \e[32m'#{project}'\e[0m" | |
platforms = { |
View download_anonymous_icons_from_drive.rb
This file contains 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
#!/usr/bin/env ruby | |
icon_list = "alligator, anteater, armadillo, auroch, axolotl, badger, bat, beaver, buffalo, camel, chameleon, cheetah, chipmunk, chinchilla, chupacabra, cormorant, coyote, crow, dingo, dinosaur, dolphin, duck, dragon, elephant, ferret, fox, frog, giraffe, gopher, grizzly, hedgehog, hippo, hyena, jackal, ibex, ifrit, iguana, koala, kraken, lemur, leopard, liger, llama, manatee, mink, monkey, narwhal, nyan cat, orangutan, otter, panda, penguin, platypus, python, pumpkin, quagga, rabbit, raccoon, rhino, sheep, shrew, skunk, slow loris, squirrel, turtle, walrus, wolf, wolverine, wombat" | |
for icon in icon_list.split ', ' do | |
element = icon.sub ' ', '' | |
`curl https://ssl.gstatic.com/docs/common/profile/#{element}_lg.png -o icons/#{element}.png` | |
end |
View Questions.md
View C# Combinatorics
This file contains 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
public static List<List<T>> GeneratePowerSet<T>(List<T> list) | |
{ | |
var result = new List<List<T>>(); | |
if (list.Count > 0) | |
{ | |
foreach (var t in GeneratePowerSet(list.GetRange(1, list.Count - 1))) | |
{ | |
result.Add(t); | |
var temp = DeepCopy(t); | |
temp.Add(list[0]); |
View Java TCP Server Wrapper
This file contains 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
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.io.OutputStreamWriter; | |
import java.io.PrintWriter; | |
import java.net.InetAddress; | |
import java.net.ServerSocket; | |
import java.net.Socket; | |
import java.net.UnknownHostException; |
NewerOlder