J.F. Sebastian

13,508
Reputation
1041 views

Registered User

Name J.F. Sebastian
Member for 1 year
Seen 19 hours ago
Website
Location Moscow
Age
19h
revised Algorithm - How to delete duplicate elements in a list efficiently?
added 'Case: items are comparable
19h
comment Algorithm - How to delete duplicate elements in a list efficiently?
Your solution for 'General Case: Ordering' doesn't preserve original order (OP requirement). btw, prev = item can be lifted to the if suite.
19h
answered Algorithm - How to delete duplicate elements in a list efficiently?
20h
comment Algorithm - How to delete duplicate elements in a list efficiently?
Actually M contains the result therefore if you must to do it in one line then: collections.deque((M.append(e) for e in L if e not in M), maxlen=0). Here I've used itertools recipe: consume = lambda it: deque(it, maxlen=0) It performs iterations until the iterator is exhausted. Final result is in the M list. It uses half the memory but time efficiency is the same O(n**2).
1d
comment How to pass an unicode char argument to ImageMagick?
Maybe '▣' is not in the somefont.ttf?
1d
comment How to pass an unicode char argument to ImageMagick?
@jack: the first command is incorrect because there is '-' before 'label'.
1d
comment Python __slots__
@oefe: Flyweight and __slots__ are both optimization techniques to save memory. __slots__ shows benefits when you have many many objects as well as Flyweight design pattern. The both solve the same problem.
1d
comment Python: How does inheritance of __slots__ in subclasses actually work?
union is not disjoint is not a phrase from a plain English. :) As @Alex Martelli've shown it is not an error if slots sets are not disjoint. Otherwise -- nice summary.
2d
comment How can I translate this XPath expression to BeautifulSoup?
Have you tried double-quotes instead of single-quotes: <a href="/cabel">...</a>.
2d
comment Algorithm - How to delete duplicate elements in a list efficiently?
In-place removal is faster stackoverflow.com/questions/89178/…
2d
comment Algorithm - How to delete duplicate elements in a list efficiently?
[(M.append(e) or e) for e in L if e not in M] is less ugly and has the same efficiency (O(n**2)) as 'zip' variant. It is applicable when you can't use set or sort i.e., almost never.
2d
revised Algorithm - How to delete duplicate elements in a list efficiently?
added links to related questions
2d
comment What is the preferred technique to convert an object’s properties to a sorted list of tuples?
inspect.getmembers() already returns list sorted by name.
2d
comment What is the preferred technique to convert an object’s properties to a sorted list of tuples?
Use if not k.startswith('_'). It is a convention that items that start with '_' are not public.
2d
comment How do I check the index of a an element in a list? (Python)
next() throws StopIteration if 'aa' is not in the list.
2d
comment How do I check the index of a an element in a list? (Python)
next() is present in 2.6
2d
comment How to pass an unicode char argument to ImageMagick?
@jack: read comment after XXX mark.
2d
revised Why can’t I join this tuple in Python?
added code example
2d
revised How to pass an unicode char argument to ImageMagick?
added examples
2d
answered How to pass an unicode char argument to ImageMagick?
2d
answered How do I check the index of a an element in a list? (Python)
2d
revised How do I check the index of a an element in a list? (Python)
fixed output
Nov
28
revised Is it worth investing time in learning to use emacs?
added link to "It's All Text" firefox addon
Nov
28
revised The most common pitfalls for a beginner Drupal user?
fixed typos
Nov
28
answered Creating hierarchy tree from dictionary of pages’ contents
Nov
28
comment Can you provide some examples of why it is hard to parse XML and HTML with a regex?
> sign is perfectly valid in html stackoverflow.com/questions/94528/…
Nov
27
answered Standard library - higher-precision floating point?
Nov
27
comment Python idiom to return first item or None
@steveha: bool(lst) `tells us whether `len(lst) > 0 it doesn't tell us anything about what items lst contains e.g., bool([False]) == True; therefore the expression [False] or [] returns [False], the same is for [0] or [] it returns [0].
Nov
27
awarded  Necromancer
Nov
26
comment How to check if an integer is power of 3?
@Noctis: There are real-world applications that require both big integers and speed.
Nov
26
comment How to tell whether a file is executable on Windows in Python?
@Jiri: Point 2. might return non-executable in the sense of point 3. e.g., I've seen how one of WinAPI functions (don't remember which one) returns a.bat~ as executable (point 2), but it is not executable in the sense (pp. 1 or 3). Obviously sets 1 and 3 are not the same that returns us to square one: how to implement p 3. in non-desctructive terms (to simplify a bit).
Nov
26
comment Swapping 1 with 0 and 0 with 1 in a pythonic way?
val = 1 - val in no way communicates val is always either 1 or 0 and that it is supposed to swap/flip these values. marked = not marked communicates both.
Nov
26
answered How would you represent a MineSweeper grid in Python?
Nov
26
comment Scrapy spider index error
Always use raw string literal for strings that might contain regexps e.g., instead of '\w+' use r'\w+'.
Nov
24
comment How to treat a returned/stored string like a raw string in Python?
btw, there are no "raw" strings in Python, there are just convenient literals in the r'' form (for regexps and Windows paths as a rule).
Nov
24
comment Idiomatic Python has_one
+1: for the exactly_one() name. sum(1 for x in seq if x) == 1
Nov
24
answered Idiomatic Python has_one
Nov
24
accepted Is it possible for lxml to work in a case-insensitive manner?
Nov
23
awarded  Nice Answer
Nov
22
comment Swapping 1 with 0 and 0 with 1 in a pythonic way?
Is there a reason not to use True/False instead of 1/0 in your case?
Nov
22
revised Is there a label in Python ?
fixed SyntaxError
Nov
21
revised Most efficient code for the first 10000 prime numbers?
fixed typo
Nov
20
revised Python: Convert string into function name; getattr or equal?
added remark on `eval_dottedname()` capabilities
Nov
17
revised Python: How to ignore #comment lines when reading in a file.
fixed off-by-one error when '#' is not in line
Nov
15
revised Dict has key from list
added example command line with --maxn, --npoints
Nov
15
comment Dict has key from list
@mgag: Beware that micro-benchmarks do not matter much. Always measure performance of your code before applying any optimizations.
Nov
15
comment Dict has key from list
@Alex: You're right. I've clarified that 'map' variant is suitable for Python 3.x
Nov
15
comment Python: how to make two lists from a dictionary
@Edan: figures = sum((pylab.plot(x, y) for x, y in res), [])
Nov
15
comment Python: how to make two lists from a dictionary
pylab.plot doesn't accept iterators therefore repeat() is not applicable in this case.
Nov
15
comment Python: how to make two lists from a dictionary
You've missed parenthesis: (repeat(k, len(v)), v).