ikemonn's blog

技術ネタをちょこちょこと

2016-11-23から1日間の記事一覧

SRM 638 Div2 250 NamingConvention

問題文 https://community.topcoder.com/stat?c=problem_statement&pm=13521 書いた class NamingConvention: def toCamelCase(self, variableName): while variableName.count('_') > 0: replace_char_index = variableName.index('_') variableName = vari…