34
ciel
13 28 49
6512/ 7195
Last seen 1 year ago
Member for 10 years, 2 months, 17 days
Difficulty Normal
I'm a Japanese, not French nor [snip]. I'm too much a competitive programmer rather than system engineer; my coding motto is to be artistic.

Best reviews / Newest reviews
proper_usual-ciel 1 1
Now, if ZeroDivisionError is triggered, I can **assure** that the given equation is not solvable. More
Second-Sim0000 1 1
I thought there are no Ruby's '%03b' equivalent in Python :p More
First-Sim0000 1 1
Shorter than my very first (created 6 months ago) solution... Great! More
kinda_usual-ciel 1
What the hell is "random.shuffle" ? :p More
Magnum opus-veky 1 1
God. I love it. Maybe you can beat Ruby TRICK contest ^^ More
First-ciel
I have solved in an usual way: http://www.checkio.org/mission/number-guess/publications/ciel/python-3/second/ More
First-ciel
Actually I used irb> (0..100).map{|e|[e%2,e%3,e%5,e%7]} Perhaps I should have used [[e%2,e%3,e%5,e%7] for e in range(101)] More
First-htamas 2
It seems len(data) is too short. But... this is due to CheckiO tests.py format... More
short-ciel
Note: this code is compatible on both Py2.7 and Py3.3. More
Functional (old)-ciel
Sigh... I moved this solution to uncategorized and republished new version. More
getattr-Sim0000 1
Now I don't know how you imported hashlib... More
really_one_liner_py2and3-ciel
In this solution, I try to bypass checkio guardian... #Most common Py3 detection sys.version_info[0]>=3 #Usual Py3 detection on CheckiO 'maketrans' in str.__dict__ #Hackish way __import__.__globals__['sys'].version_info[0]>=3 More
kabopan_py2test-ciel
Look at the line 577. I don't see why this "bytes" is required. If pad\_0\_1\_size's "\x80" is wrong, possibly CheckiO executes Py2 code under Py3 with some layers. If so, the layer must be fixed. More
kabopan_py3test2-ciel
Put kabopan\_py3test2 and kabopan\_py2test2 to creative directory to make sure that older kabopan-based publication are in grave... More
recursive-ciel
moved to uncategorized ("went to grave") More
nonum_str-ciel
This code might remind someone about CodeIQ Restricted Hello World problem. More
rot13-ciel
Py3.4 version: import codecs i_love_python=lambda:codecs.encode('V ybir Clguba!','rot13') if __name__=='__main__': assert i_love_python()=='I love Python!' Well, CheckiO does not allow codecs module... More
Least operation-ciel
cf: http://yukicoder.me/submissions/156186 O(nm^2 + 2^k) (k==2 with this problem) More
First-Wei5
Really cool hacking! I love it! More
First-ciel
Actually I think current random test has issue: it does not make large rooms like basic test3. More
1
2