`
rokuan
  • 浏览: 20400 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论
文章列表
题目: 引用2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smallest positive number that is evenly divisible by all of the numbers from 1 to 20? 这个题目解得很差,写了个函数,传入1到10,速度还行,传入1到20,竟然计算了XX秒...看来算法太烂了,自我笔试下@@@@ 我的python代码: def gcd(list ...
题目: 引用 The sum of the squares of the first ten natural numbers is, 12 + 22 + ... + 102 = 385 The square of the sum of the first ten natural numbers is, (1 + 2 + ... + 10)2 = 552 = 3025 Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is ...
题目: 引用 Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the ...
引用题目:If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000. 我的python解: num_3 = 999 / 3 num_5 = 999 / 5 num_15 = 999 / 15 num = 0 for i in range(num_3): num + ...
以前玩过个玩具,类似于齿轮,一个小齿轮在一个大齿轮里面转,把笔插入那个小齿轮的小孔,然后一圈一圈转,就有了一个神奇的图案。用python写了下,也不知对不对,图是出来了,分析了一下规律,应该就是一个公转自转问题。下面上代码: #! /usr/bin/env python #coding=utf-8 import Image,ImageDraw,sys,math def magic(bigc, bigr, smallr, l): thita = 0 for thita_big in xrange(36000): thita_small = ...
今晚去软通动力面试,受挫了。总结一下: 1.不要太老实,尤其和人事交谈的时候,第一印象很重要 2.话不能多,不要太活跃,尽量低调,老实,不要显得太自信,太自负 3.摸清行情,工资要开的正好适合 4.要在基础知识上做充分准备,平时要每天学习,积累,关于面试官问的问题,要尽量了解清楚意思 技术面试问的问题: 1.clone的实现 2.深拷贝和浅拷贝 3.线程锁 4.自定义标签的实现 5.spring的aop的应用,实现 技术知识是硬件,给人的印象是软件
Struts Recipes 的合著者 George Franciscus 将介绍另一个重大的 Struts 整合窍门 —— 这次是将 Struts 应用程序导入 Spring 框架。请跟随 George,他将向您展示如何改变 Struts 动作,使得管理 Struts 动作就像管理 Spring beans 那样。结果是一个增强的 web 框架,这个框架可以方便地利用 Spring AOP 的优势。 您肯定已经听说过控制反转 (IOC) 设计模式,因为很长一段时间以来一直在流传关于它的信息。如果您在任何功能中使用过 Spring 框架,那么您就知道其原理的作用。在本文中,我利用这一原理把一个 ...
Global site tag (gtag.js) - Google Analytics