Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6205273
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:14:36+00:00 2026-05-24T05:14:36+00:00

I write the following two functions I want to implement the functions with HashMap

  • 0

I write the following two functions
I want to implement the functions with HashMap ( in place of functions )
how to do that?

static void someFunction(int count, int[] anArray)  
{      
  for ( int i=0;i<anArray[count];i = i + 1) 
  {
    System.out.print("#");
  }
  System.out.println("");
} 

static void someFunctionB(int[] anArray , int count,  String stringfinal, String sttr)  
{      
  anArray[count]= stringfinal.replaceAll("[^"+sttr+"]", "").length();
}   

someFunctionB(anArray ,  count,   stringfinal,  sttr  );        

someFunction(count, anArray);  
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T05:14:37+00:00Added an answer on May 24, 2026 at 5:14 am

    Without using any functions (apart from public static void main(String[] args)), you could do something like:

    Map<Integer, Integer> mapThatPretendsToBeAnArray = new LinkedHashMap<Integer, Integer>();
    mapThatPretendsToBeAnArray.put(0, 17);
    mapThatPretendsToBeAnArray.put(1, 5);
    mapThatPretendsToBeAnArray.put(2, 1);
    mapThatPretendsToBeAnArray.put(3, 319);
    
    //someFunction()
    for (int i = 0; i < mapThatPretendsToBeAnArray.get(1); i++) {
        System.out.print("#");
    }
    System.out.println("");
    
    //someFunctionB()
    mapThatPretendsToBeAnArray.put(3, "stringFinal".replaceAll("[^"+"sttr"+"]", "").length());
    

    But of course, someFunction() and someFunctionB() are more useful, because they let you parameterize your arguments instead of having to pick hard-coded ones as in this example.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a better to write the following? I have two services that I
've written two functions in a file commit_hooks.py that I want to run before
I am trying to combine the following two functions into one portable function: void
Let's say I want to write a function that does the following: Given a
How to write following statement in c using switch statement in c int i
I want to write the following procedure / function: procedure ShowSysPopup(aFile: string; x, y:
I've got the following problem: I need to write a decorator that would be
I am using asterisk to implement a voice server. I have the following two
I want to measure the following two things: How many times a comma appears
I know, that if i want to compare two structs than i have to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.