Computer questions (Elementary)-Xiao Ming's chopsticks (Java)

Source: Internet
Author: User

Computer questions (Elementary)-Xiao Ming's chopsticks (Java)

The questions are as follows:

The Code is as follows:

Package huawei; import java. util. hashMap; import java. util. map; import java. util. examples; public class Demo {public static int checkChopsticks (int [] chopsticks) {/** the key of map is used as the length of chopsticks, and value is used as the number of chopsticks */Map
 
  
Hm = new HashMap
  
   
(); Int count = 0; for (int I = 0; I <chopsticks. length; I ++) {if (hm. containsKey (chopsticks [I]) {count = hm. get (chopsticks [I]) + 1; // Number of chopsticks plus 1} else {count = 1;} hm. put (chopsticks [I], count) ;}for (int I = 0; I <chopsticks. length; I ++) {if (hm. get (chopsticks [I]) % 2 = 0) {continue;} else if (hm. get (chopsticks [I]) % 2! = 0) {return chopsticks [I] ;}} return-1 ;}public static void main (String [] agrs) {condition cin = new condition (System. in); String input = cin. nextLine (); String [] string = input. split (","); int [] inputInt = new int [string. length]; for (int I = 0; I <string. length; I ++) {inputInt [I] = Integer. parseInt (string [I]);} int n = checkChopsticks (inputInt); System. out. println (n );}}
  
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.