+ 3
Can someone explain to me how does insertion code works on this one?
I do want to learn the algorithm of this in laymans term, not familliar with static int since im a beginner, help please thank you! đđ https://code.sololearn.com/cY3JIh8TX4KV/?ref=app
3 RĂ©ponses
+ 3
The static keyword is taught in the Java course Classes & Objects lesson 37.1, but in this use case it means that the method belongs to the class and not an instance of the class. Meaning that it can be used without creating an instance of the class.
+ 2
thanks for the info!
0
I think this code is working fine..