趣味编程:静夜思(Kotlin版)
摘要:
import java.util.* fun verticalWriting(txt:String, offset:Int) = txt.mapIndexed { i, c -> Pair(i, c) } .groupByTo(TreeMap(), { it.first % offset }, { 阅读全文
posted @ 2017-05-27 22:32 zwvista 阅读(208) 评论(0) 推荐(0) 编辑