Tagged Questions
31
votes
20answers
3k views
Code Golf: Finite-state machine!
Finite state machine
A deterministic finite state machine is a simple computation model, widely used as an introduction to automata theory in basic CS courses. It is a simple model, equivalent to ...
14
votes
6answers
797 views
Joining a set of ordered-integer yielding Python iterators
Here is a seemingly simple problem: given a list of iterators that yield sequences of integers in ascending order, write a concise generator that yields only the integers that appear in every ...
13
votes
5answers
2k views
Alternative to the `match = re.match(); if match: …` idiom?
If you want to check if something matches a regex, if so, print the first group, you do..
import re
match = re.match("(\d+)g", "123g")
if match is not None:
print match.group(1)
This is ...
3
votes
0answers
63 views
List of paths to nested dictionary [migrated]
Given a list of nested menu items,
items = [
'3D/Axis',
'3D/CameraTracker',
'Color/Invert',
'Color/Log2Lin',
'Color/Math/Add',
'Color/Math/Multiply',
'Other/Group',
...
3
votes
7answers
613 views
python dict.add_by_value(dict_2)?
The problem:
>>> a = dict(a=1,b=2 )
>>> b = dict( b=3,c=2)
>>> c = ???
c = {'a': 1, 'b': 5, 'c': 2}
So, the idea is two add to dictionaries by int/float values in ...
3
votes
3answers
997 views
Python Golf: what's the most concise way of turning this list of lists into a dictionary:
I have a list of lists that looks like this:
[['Tom', 'Dick'], ['Harry', 'John', 'Mike'], ['Bob']]
and I want to turn it into a dictionary where each key is a name and each value is a number ...
2
votes
2answers
583 views
Shortest code in python (Spoj SIZECON) [closed]
I have been trying this problem SIZECON at spoj. But i not find the best solution in python.
My solution is uses 46 characters. (and get the 46 score)
Here is my solution:
c=0
...
2
votes
4answers
663 views
Munging non-printable characters to dots using string.translate()
So I've done this before and it's a surprising ugly bit of code for such a seemingly simple task.
The goal is to translate any non-printable character into a . (dot). For my purposes "printable" ...
2
votes
11answers
465 views
oneliner scramble program
It's that time of year again that programmers want to shuffle a list such that no element resides on its original position (at least in the Netherlands, we celebrate Sinterklaas and pick straws for ...
2
votes
2answers
1k views
Decimal alignment formatting in Python
This should be easy.
Here's my array (rather, a method of generating representative test arrays):
>>> ri = numpy.random.randint
>>> ri2 = lambda x: ''.join(ri(0,9,x).astype('S'))
...
2
votes
3answers
837 views
Smart Sudoku Golf
The point of this question is to create the shortest not abusively slow Sudoku solver. This is defined as: don't recurse when there are spots on the board which can only possibly be one digit.
Here ...