L1-027 出租 (Python实现)
L1-027 出租
下面是新浪微博上曾经很火的一张图:
一时间网上一片求救声,急问这个怎么破。其实这段代码很简单,index
数组就是arr
数组的下标,index[0]=2
对应 arr[2]=1
,index[1]=0
对应 arr[0]=8
,index[2]=3
对应 arr[3]=0
,以此类推…… 很容易得到电话号码是18013820100
。
本题要求你编写一个程序,为任何一个电话号码生成这段代码 —— 事实上,只要生成最前面两行就可以了,后面内容是不变的。
输入格式:
输入在一行中给出一个由11位数字组成的手机号码。
输出格式:
为输入的号码生成代码的前两行,其中arr
中的数字必须按递减顺序给出。
输入样例:
18013820100
输出样例:
int[] arr = new int[]{8,3,2,1,0};
int[] index = new int[]{3,0,4,3,1,0,2,4,3,4,4};
Python简易实现
n = input()
t = n
n = list(n)
n = list(set(n))
n.sort()
n.reverse()
index = []
for j in t:
c = 0
for i in n:
c = c + 1
if i == j:
index.insert(12,str(c-1))
break
print("int[] arr = new int[]{" + ','.join(n) + "};")
print("int[] index = new int[]{" + ','.join(index) +"};")
参考
平时python输出list字符串时,会自动加上引号和中括号。
比如
str=['hello','world']
>>>str
['hello', 'world']
可以用join方法:
>>>print " ".join(str)
hello world
比如:
str = "-"
seq = ("a", "b", "c")
print str.join( seq )`
a-b-c
str=['1', '2', '3']
for i in str:
int(i)
print(i)
- 用Python将list中的string转换为int
假设有这样一个
results = ['1', '2', '3']
转化为下面这个样子
results = [1, 2, 3]
我们可以使用map函数
在Python2中这样操作:
results = map(int, results)
在Python3中这样操作:
results = list(map(int, results))