This file contains hidden or 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
inFile = open('alphabet.in') | |
outFile = open('alphabet.out', 'w') | |
print >> outFile, '\n'.join( | |
'Case #%d: %d' % (i + 1, | |
(lambda s, target: min(s.count(l) / target.count(l) for l in target)) | |
(inFile.readline(), 'HACKERCUP') | |
) for i in xrange(int(inFile.readline())) | |
) |
This file contains hidden or 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
(lambda i, o: | |
o.write('\n'.join( | |
'Case #%d: %d' % (n + 1, | |
(lambda str, target: min(str.count(l) / target.count(l) for l in target)) | |
(i.readline(), 'HACKERCUP') | |
) for n in xrange(int(i.readline())) | |
)) | |
)(open('alphabet.in'), open('alphabet.out', 'w')) |
This file contains hidden or 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
inFile = open('alphabet.in') | |
outFile = open('alphabet.out', 'w') | |
print >> outFile, '\n'.join( | |
'Case #%d: %d' % (i + 1, | |
(lambda s, target: min(s.count(l) / target.count(l) for l in target)) | |
(inFile.readline(), 'HACKERCUP') | |
) for i in xrange(int(inFile.readline())) | |
) |
This file contains hidden or 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
[ | |
{"angle": 5, "pos": [0.08, 2.58], "date": "Thu 6"}, | |
{"angle": 5, "pos": [0.09, 2.40], "date": "Thu 6"}, | |
{"angle": 5, "pos": [0.10, 2.39], "date": "Thu 6"}, | |
{"angle": 5, "pos": [0.10, 2.49], "date": "Thu 6"}, | |
{"angle": 5, "pos": [0.10, 2.54], "date": "Thu 6"}, | |
{"angle": 5, "pos": [0.12, 2.49], "date": "Thu 6"}, | |
{"angle": 5, "pos": [0.12, 2.68], "date": "Thu 6"}, | |
{"angle": 5, "pos": [0.13, 2.62], "date": "Thu 6"}, | |
{"angle": 5, "pos": [0.13, 2.67], "date": "Thu 6"}, |
This file contains hidden or 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
package lejos.nxt.addon; | |
import lejos.nxt.I2CPort; | |
import lejos.nxt.I2CSensor; | |
public class IRSeekerV2 | |
{ | |
public static enum Mode { | |
AC, DC | |
}; |
NewerOlder