• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python series.largest_product函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中series.largest_product函数的典型用法代码示例。如果您正苦于以下问题:Python largest_product函数的具体用法?Python largest_product怎么用?Python largest_product使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了largest_product函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: test_project_euler_big_number

 def test_project_euler_big_number(self):
     series = (
         "731671765313306249192251196744265747423553491949349698352031277450632623957"
         "831801698480186947885184385861560789112949495459501737958331952853208805511"
         "125406987471585238630507156932909632952274430435576689664895044524452316173"
         "185640309871112172238311362229893423380308135336276614282806444486645238749"
         "303589072962904915604407723907138105158593079608667017242712188399879790879"
         "227492190169972088809377665727333001053367881220235421809751254540594752243"
         "525849077116705560136048395864467063244157221553975369781797784617406495514"
         "929086256932197846862248283972241375657056057490261407972968652414535100474"
         "821663704844031998900088952434506585412275886668811642717147992444292823086"
         "346567481391912316282458617866458359124566529476545682848912883142607690042"
         "242190226710556263211111093705442175069416589604080719840385096245544436298"
         "123098787992724428490918884580156166097919133875499200524063689912560717606"
         "058861164671094050775410022569831552000559357297257163626956188267042825248"
         "3600823257530420752963450"
     )
     self.assertEqual(23514624000, largest_product(series, 13))
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:18,代码来源:largest_series_product_test.py


示例2: test_tiny_number

 def test_tiny_number(self):
     self.assertEqual(9, largest_product("19", 2))
开发者ID:jealous,项目名称:exercism,代码行数:2,代码来源:largest_series_product_test.py


示例3: test_largest_product_of_2

 def test_largest_product_of_2(self):
     self.assertEqual(72, largest_product("0123456789", 2))
开发者ID:jealous,项目名称:exercism,代码行数:2,代码来源:largest_series_product_test.py


示例4: test_nonzero_slice_size_and_empty_string

 def test_nonzero_slice_size_and_empty_string(self):
     with self.assertRaises(ValueError):
         largest_product("", 1)
开发者ID:Giannie,项目名称:xpython,代码行数:3,代码来源:largest_series_product_test.py


示例5: test_identity_with_nonempty_string

 def test_identity_with_nonempty_string(self):
     self.assertEqual(1, largest_product("123", 0))
开发者ID:Giannie,项目名称:xpython,代码行数:2,代码来源:largest_series_product_test.py


示例6: test_string_where_all_spans_contain_zero

 def test_string_where_all_spans_contain_zero(self):
     self.assertEqual(0, largest_product("99099", 3))
开发者ID:Giannie,项目名称:xpython,代码行数:2,代码来源:largest_series_product_test.py


示例7: test__largest_product_span_equals_length

 def test__largest_product_span_equals_length(self):
     self.assertEqual(18, largest_product("29", 2))
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:2,代码来源:largest_series_product_test.py


示例8: test_identity

 def test_identity(self):
     self.assertEqual(1, largest_product("", 0))
开发者ID:jealous,项目名称:exercism,代码行数:2,代码来源:largest_series_product_test.py


示例9: test_digits_with_invalid_character

 def test_digits_with_invalid_character(self):
     with self.assertRaises(ValueError):
         largest_product("1234a5", 2)
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:3,代码来源:largest_series_product_test.py


示例10: test_span_long_than_number

 def test_span_long_than_number(self):
     with self.assertRaises(ValueError):
         largest_product("123", 4)
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:3,代码来源:largest_series_product_test.py


示例11: test_all_digits_zero

 def test_all_digits_zero(self):
     self.assertEqual(0, largest_product("0000", 2))
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:2,代码来源:largest_series_product_test.py


示例12: test_big_number

 def test_big_number(self):
     series = "73167176531330624919225119674426574742355349194934"
     self.assertEqual(23520, largest_product(series, 6))
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:3,代码来源:largest_series_product_test.py


示例13: test_largest_product_of_5

 def test_largest_product_of_5(self):
     self.assertEqual(15120, largest_product("0123456789", 5))
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:2,代码来源:largest_series_product_test.py


示例14: test_largest_product_of_3

 def test_largest_product_of_3(self):
     self.assertEqual(504, largest_product("0123456789", 3))
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:2,代码来源:largest_series_product_test.py


示例15: test_largest_product_of_3

 def test_largest_product_of_3(self):
     self.assertEqual(270, largest_product("1027839564", 3))
开发者ID:jealous,项目名称:exercism,代码行数:2,代码来源:largest_series_product_test.py


示例16: test_negative_span

 def test_negative_span(self):
     with self.assertRaises(ValueError):
         largest_product("12345", -1)
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:3,代码来源:largest_series_product_test.py


示例17: test_big_number

 def test_big_number(self):
     series = "52677741234314237566414902593461595376319419139427"
     self.assertEqual(28350, largest_product(series, 6))
开发者ID:jealous,项目名称:exercism,代码行数:3,代码来源:largest_series_product_test.py


示例18: test_string_with_all_zeroes

 def test_string_with_all_zeroes(self):
     self.assertEqual(0, largest_product("0000", 2))
开发者ID:Giannie,项目名称:xpython,代码行数:2,代码来源:largest_series_product_test.py


示例19: test_slices_bigger_than_number

 def test_slices_bigger_than_number(self):
     with self.assertRaises(ValueError):
         largest_product("012", 4)
开发者ID:jealous,项目名称:exercism,代码行数:3,代码来源:largest_series_product_test.py


示例20: test_largest_product_of_2_unordered

 def test_largest_product_of_2_unordered(self):
     self.assertEqual(48, largest_product("576802143", 2))
开发者ID:CyrusTheVirusx,项目名称:xpython,代码行数:2,代码来源:largest_series_product_test.py



注:本文中的series.largest_product函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python series.slices函数代码示例发布时间:2022-05-27
下一篇:
Python serializers.UserSerializer类代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap