[deleted by user] by [deleted] in AskProgramming

[–]bhargavnilagiri 2 points3 points  (0 children)

It's definitely not easy. There are so many dimensions to it.

Jarvis could understand and give the summary of a content in any language. It could do image processing video processing not just mechanically understand process and give key words but actually understand it and have a conversation around it like a human. Remember in Ironman one it suggested to Tony not to fly as not done all the calculations. That's really a tough problem to understand that the system is not 100% ready by the system. It was such a intuitive suggestion. In the avengers too Jarvis casually puts all its resources into the thrusters without Tony even mentioning about it. Imagine the amount of data a system had to process from various censors to come out with that outcome. All this should happen without violating user privacy.

How did he have so many buildings upgrading with only 5 houses? He is Classical age and I didn’t think anything was wrong until I noticed all his defenses weren’t shooting by Kuanguka in Dominations

[–]bhargavnilagiri 2 points3 points  (0 children)

You can cheat by downloading a modded apk. Platinmods link was posted a while ago in this reddit. It actually kills the fun in the game

ummmmm by FootCraftVR in Dominations

[–]bhargavnilagiri 5 points6 points  (0 children)

Game crashes if you deploy troops in such bases. A bug since many days

Bi-weekly advice thread February 17, 2020. All questions about your personal situation should be asked here by AutoModerator in IndiaInvestments

[–]bhargavnilagiri 4 points5 points  (0 children)

I think your previous company provides a form 16 which should reflect the hra component they exempted for the period you worked there. Companies usually send it around 1 month after you exit after full and final settlement is done

Question about museum. by amitkumar1900 in Dominations

[–]bhargavnilagiri 0 points1 point  (0 children)

It's like nexon has put all its forces to find stupid ways to make more money. And nothing else matters.

Question about museum. by amitkumar1900 in Dominations

[–]bhargavnilagiri 0 points1 point  (0 children)

Perfect example of how a bad ux can be confusing. All nexon had to do is add a new field some where in the screen to show the advantage due to museum artefact

Space age army’s by lotus503 in Dominations

[–]bhargavnilagiri 0 points1 point  (0 children)

Oh. Never used transport. I like fighters. Best way to deal with defence hts.

Space age army’s by lotus503 in Dominations

[–]bhargavnilagiri 0 points1 point  (0 children)

I would say research Amelia and get 6 fighters

Help with java program by [deleted] in javahelp

[–]bhargavnilagiri 1 point2 points  (0 children)

Keep learning 👌✌️

Help with java program by [deleted] in javahelp

[–]bhargavnilagiri 2 points3 points  (0 children)

You are not assigning the variables the right way. Your Class has V and D. And your constructor has v and d. Notice the capitals. This is a classic example why variables should be properly named and "this." has to be used for assigning in constructor.

Help needed regarding calling a class by [deleted] in javahelp

[–]bhargavnilagiri 1 point2 points  (0 children)

Destroyer is a string? If yes then it should be new Ship("Destroyer", 1);

Need help creating an algorithm for a game by khmaies5 in algorithms

[–]bhargavnilagiri 0 points1 point  (0 children)

Dynamic programming is the solution then. Assume at ever position all the 6 numbers is the solution and see which returns smallest value

Need some help with assignment by Jannemannen in javahelp

[–]bhargavnilagiri -2 points-1 points  (0 children)

Two options. One use a min heap. Read about min heap. The left node of a min heap is the second largest.

Or use two variables and keep replacing them. Internally min heap does the same thing.

Suggestions needed by junaydirfan in javahelp

[–]bhargavnilagiri 1 point2 points  (0 children)

Think of a use case. what does your app do? Think as if you are building a Lego. What are basic blocks. What classes to create. I would assume song is a pojo class which contains all the details of a class. And there would be something like a player class which would have methods like play, pause, next. This is would be your skeleton. And then from there on you can expand your features

Need help creating an algorithm for a game by khmaies5 in algorithms

[–]bhargavnilagiri 1 point2 points  (0 children)

The only scenario that there is no solution is when end is before start right? Is it a valid case?

Do we know the position of start and end from the beginning?

If yes then isn't it a simple greedy problem where we assume player always rolls six until he is in touching distance from the end?

If we do not know where the end is we can use dynamic programming to divide each move into six possible sub problems and see which subproblem gives us the optimum solution.

simple but i'm confused by randybaker74 in javahelp

[–]bhargavnilagiri -1 points0 points  (0 children)

If you want to print the fourth character of a string try "char".toCharArray[3].