[Grooy]List, Map and Range习题

1.Given the list [14, 12, 13, 11], express how we would obtain the List with these elements in descending order.

def list  =[14,12,13,11]
print list.sort().reverse() // output: [14,13,12,11]

如果使用Ruby也是类似的

list  =[14,12,13,11]
# output: [14,13,12,11]
print list.sort().reverse()

 

2.Given the list [1,2,[3,4]], deternmine the efffect of  [1,2,[3,4]].flatten

def o = [1, [2, [3, 4]]]

print o.flatten() // output: [1,2,3,4]  

如果使用Ruby,也是类似的

o = [1, [2, [3, 4]]]

print o.flatten() # output: [1,2,3,4] 

 

 

3. Given two Lists [11, 12, 13, 14] and [13, 14, 15], how would we obtain the list of items from the first that are not in the second, that is, [11, 12]?

def o = [11121314]
def o1 =  [ 1314,15]
def  o2 = o.intersect(o1)

print o-o2  // output: [11,12]

如果是使用Ruby也是类似的

o = [11, 12, 13, 14]
o1 = [13, 14,15]

puts o-o1

 

转载于:https://www.cnblogs.com/buhaiqing/archive/2012/09/22/2697750.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/576248.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++ 程序运行后的内存模型

程序运行后 栈区: 由编译器自动分配释放,存放函数的参数值,局部变量等 注意事项:不要返回局部变量的地址&#xff0c;栈区开辟的数据由编译器自动释放 #include<iostream> #include<string> using namespace std;int* func() {int a 10; //局部变量放在栈区&am…

C++ 堆区内存分配

#include<iostream> #include<string> using namespace std;int* func(int b) { //形参也放在栈区int * pnew int(10);return p; }//2、在堆区利用new开辟数组 void test02() {//创建10整型数据的数组&#xff0c;在堆区int * arr new int[10]; //10代表数组有1…

tomcat日志,用户以及启动时的一些问题

1.启动tomcat时候抛错 严重: Servlet.service() for servlet jsp threw exception java.lang.NullPointerException at org.apache.jsp.index_jsp._jspInit(index_jsp.java:22) at org.apache.jasper.runtime.HttpJspBase.init(HttpJspBase.java:52) at org.apache.jasper.serv…

C++ 函数的引用传递

#include<iostream> #include<string> using namespace std;//1、值传递 void mySwap01(int a, int b) {int temp a;a b;b temp;cout << "mySwap01 a" << a << endl;cout << "mySwap01 b" << b << end…

C++ 引用本质就是一个指针常量

#include<iostream> #include<string> using namespace std;//发现是引用&#xff0c;转换为int* const ref &a;void func(int& ref) {ref 100; // ref是引用&#xff0c;转换为*ref 100}int main() {int a 10;//自动转换为int* const ref &a; 指…

一步一步使用Ext JS MVC与Asp.Net MVC 3开发简单的CMS后台管理系统之用户管理(1)...

应用程序的基本框架已经搭建好了&#xff0c;现在要做的是完成一个个的功能模块。先从简单做起&#xff0c;完成用户管理模块&#xff0c;该模块主要功能是使用一个Grid显示用户信息&#xff0c;并使用RowEditing进行用户的编辑、添加操作。Grid的分页则在Grid顶部使用分页工具…

C++ 常量引用

#include<iostream> #include<string> using namespace std;int main() {//常量引用//使用场景:用来修饰形参&#xff0c;防止误操作//int a 10;//加上const之后编译器将代码修改int temp 10; const int & ref temp; const int & ref 10;//引用必须引一…

高速pcb设计指南 1~8

http://bbs.ednchina.com/FORUM_POST_15_21830_0.HTM转载于:https://www.cnblogs.com/tureno/articles/2706904.html

C++ 函数参数的默认值和占位参数

3.2函数占位参数 C中函数的形参列表里可以有占位参数&#xff0c;用来做占位&#xff0c;调用函数时必须填补该位置 语法:返回值类型 函数名(数据类型){} 在现阶段函数的占位参数存在意义不大&#xff0c;但是后面的课程中会用到该技术 #include< iostream> using names…

Oracle递归查询

网上摘录。 一、树型表结构&#xff1a; 节点ID 上级ID 节点名称 二、公式&#xff1a; select 节点ID,节点名称,level from   表 connect by prior 节点ID上级节点ID start with 上级节点ID节点值 说明&#xff1a; 1、常见的树形结构为公司组织机构、地区…… 2、求节点I…

C++ 函数重载碰到默认的参数

#include<iostream> #include<string> using namespace std;//引用作为重载的条件 void func(int &a) { //非常量引用cout << " this is func" << endl; }void func(const int &a) { // 常量引用 const int &a 10; 合…

wzplayer for android V1.0快出炉了

关注我博客的朋友&#xff0c;发现我很久没有写博客了&#xff0c;因为最近在忙wzplayer 跨平台的事情,前些天在忙wzplayer 的opencv,opengles渲染的事情&#xff0c;最近正式在为wzplayer for android编译折腾.工作将接近尾声. 等待的朋友不要着急&#xff0c;wzplayer for an…

2.Java内存回收机制

一、Java对象在内存引用状态 内存泄露&#xff1a;程序运行过程中&#xff0c;会不断分配内存空间&#xff0c;那些不再使用的内存空间应该即时回收它们&#xff0c;从而保证系统可以再次使用这些内存&#xff0c;如果存在无用的内存没有被回收回来&#xff0c;这就是内存泄漏.…

C++ 对象的初始化和清理

4.2对象的初始化和清理 ●生活中我们买的电子产品都基本会有出厂设置,在某-天我们不用时候也会删除一些自己信息数据保证安全 ●C中的面向对象来源于生活&#xff0c;每个对象也都会有初始设置以及对象销毁前的清理数据的设置。 4.2.1构造函数和析构函数 对象的初始化和清理也是…

VMware-workstation-full-8.0.0-471780.exe

下载地址&#xff1a;http://115.com/file/bhzruvd6完美汉化补丁&#xff1a;http://115.com/file/clq88zcuVMware Workstation 8.0_HA_V3 .exe文件大小&#xff1a;80466532 字节文件版本&#xff1a;8.0.0.471780修改时间&#xff1a;2011年9月24日 10:45:09MD5 &#xff1a;…

查找当前地形位置上的贴图信息

http://answers.unity3d.com/questions/34328/terrain-with-multiple-splat-textures-how-can-i-det.html转载于:https://www.cnblogs.com/klobohyz/archive/2012/10/09/2716627.html

C++ 深拷贝与浅拷贝

#include<iostream> using namespace std; #include<string>class Person {public:Person() {cout << "Person的无参构造函数调用" << endl;};Person(int age) {m_Age age;cout << "Person的有参构造函数调用" << en…

转载]Cyclone II JTAG ASP 配置下载程序

原文&#xff1a;http://blog.sina.com.cn/s/blog_4739958a0100irp7.html 首先&#xff0c;还是那句话&#xff0c;电脑上写好程序.pof文件直接通过JTAG写到FPGA SRAM里&#xff0c;掉电丢失。 只有把.pof写到串行配置器件上&#xff0c;板子上电后串行配置器件EPCS4将程序自动…

C++ 类和对象成员特性

//当类中成员是其他类对象时&#xff0c;我们称该成员为对象成员 //构造的顺序是:先调用对象成员的构造&#xff0c;再调用本类构造 //析构顺序与构造相反 #include <iostream> using namespace std; #include <string>class Phone{public:Phone(string name){m_P…