程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

[Python implementation of Huawei machine test] check whether there is a digital combination that meets the conditions

編輯:Python

List of articles

  • Preface
  • Title Description
  • Example 1
  • Example 2
  • Reference code


Preface

《 Huawei machine test real problem Python Realization 》 The column includes Huawei column of niuke.com 、 Huawei test questions 、 Huawei OD Real problem of machine test .

If you are preparing for Huawei's interview , If you want to know something, you can send me a private letter , I will try my best to help you , I can also give you some suggestions !

This paper solves the non optimal solution ( Non optimal performance ).

Detailed analysis see 《【 Detailed explanation of Huawei's machine test questions 】 Check whether there is a combination of numbers that meet the conditions 》

Title Description

Given an array of positive integers Check whether there is an array combination that meets the rule in the array

The rules : A=B+2C

Input description :

The first line outputs the number of elements of the array The next line outputs all array elements Space off

Output description :

If there is a number that meets the requirements Output in sequence in the same line In the rules A/B/C The value of Space off If there is no output 0

Example 1

Input :
4
2 7 3 0

Output :
7 3 2

explain :
7=3+2*


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved