Skip to content

Instantly share code, notes, and snippets.

View md2perpe's full-sized avatar

Per Persson md2perpe

View GitHub Profile
@md2perpe
md2perpe / matching_positions.py
Created April 11, 2018 13:57
Matching positions
def matching_positions(data, choices):
# Example: data="apabanan", choices="aan"
# Initialize a dictionary for all positions of the char's in choices
positions = {}
for c in choices:
positions[c] = []
# Populate the dictionary
for k, c in enumerate(data):
@md2perpe
md2perpe / gissatalet.py
Last active March 24, 2018 14:15
Gissa talet
# Korrigerad version
# Ange ett tal
number = input("Ange ett tal mellan 1 - 100. ")
# Använd heltal
number = int(number)
# Räknare
guess = 0
@md2perpe
md2perpe / README.md
Last active August 18, 2019 16:18
Railroad diagram for 'Hey Jude'
package main
import (
"fmt"
"golang.org/x/tour/tree"
)
// Walk walks the tree t sending all values
// from the tree to the channel ch.
@md2perpe
md2perpe / 6174.go
Created October 14, 2017 17:53
Kaprekar's constant
// https://en.wikipedia.org/wiki/6174_(number)
package main
import (
"fmt"
"sort"
"strconv"
)
@md2perpe
md2perpe / hashlist.c
Created August 29, 2017 16:50
Combined hash and list
#include <stdio.h>
#include <malloc.h>
#include <string.h>
#define SIZE 256
struct element {
char *key;
double value;
@md2perpe
md2perpe / gear-complex.stl
Last active June 28, 2017 13:35
Rescale using numpy-stl fails translating to origo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@md2perpe
md2perpe / gist:3bcd0a1b0e5ad6188f2568f716111eea
Created June 6, 2017 07:00
Sveriges nationaldag - invandrare vs rasister
Sveriges nationaldag - dagen då invandrarna går man ur huse för att fira Sverige medan rasisterna sitter inne och tjurar och hävdar att man inte får sjunga nationalsången eller vifta med svenska flaggan.
@md2perpe
md2perpe / switch.c
Created March 24, 2017 08:38
Switch instead of if
// Instead of
if (n == 42)
single_stmt;
// one can write
switch (n)
case 42:
single_stmt;
@md2perpe
md2perpe / sd-politik.md
Last active March 7, 2017 16:00
SD:s breda politik på enkel svenska

SD:s breda politik på enkel svenska

Jobb

Ut med blattarna. De tar våra jobb.

Ekonomi

Ut med blattarna. De lever på bidrag.

Miljö

Ut med blattarna. De förstör vår miljö.