码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode笔记-1 twosum

时间:2017-07-29 19:38:28      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:nbsp   twosum   tco   leetcode   python2   pre   lambda   pytho   log   

# -*- coding: utf-8 -*-
#!/bin/env python
# Python2.7


nums = [2, 4, 7, 0, 12, 6]

print sorted(range(len(nums)))

# ind是 列表nums 排序后值的索引
ind = sorted(range(len(nums)), key=lambda x: nums[x])

print ind

L = [(b,2),(a,1),(e,3),(d,4)]
print sorted(L)
# 按照列表中的第二项来进行排序
print sorted(L, key=lambda x:x[1])

print sorted(L, key=lambda x:x[0])

 

leetcode笔记-1 twosum

标签:nbsp   twosum   tco   leetcode   python2   pre   lambda   pytho   log   

原文地址:http://www.cnblogs.com/IDRI/p/7257135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!