Answer by Federico klez Culloca for Why Is It Called Memoization?
Exactly because it's NOT "memorization" and has a specific meaning beyond simply memorizing something. I.e., you're memorizing something for a specific purpose (a performance benefit, not simply...
View ArticleComment by Federico klez Culloca on Simulate the replacement of material...
You've already been told to use the anylogic tag when needed. Please do so in the future. You don't even mention it in your question, so to other readers your question doesn't make any sense and it...
View ArticleComment by Federico klez Culloca on Java Code is not working, as it says that...
@jarus a class inside another class is allowed, but they can't expect to be able to run the inner class as if it was toplevel. And your assumption about the file name is probably correct too.
View ArticleComment by Federico klez Culloca on HTTPRequest connection seccessful but the...
Why do you assume the problem is on the client side?
View ArticleComment by Federico klez Culloca on i wrote a program for alert and prompt in...
prompt and alert are browser functions.
View ArticleComment by Federico klez Culloca on i wrote a program for alert and prompt in...
Most of this has the exact wording I get using ChatGPT. Please read Temporary policy: Generative AI (e.g., ChatGPT) is banned
View ArticleComment by Federico klez Culloca on Passing something not a wrapper class in...
Where's Cat? You didn't define the class.
View ArticleComment by Federico klez Culloca on I got the error...
Looks like that date isn't formatted according to the default pattern. Try and pass the correct pattern to the SimpleDateFormat constructor.
View ArticleComment by Federico klez Culloca on Java universal getter/setter or pass...
If you want a practical solution to avoid writing boilerplate look either into records or, if using an older version of java, Lombok.
View ArticleComment by Federico klez Culloca on Android Studio stuck on splash screen
Please don't use irrelevant tags. Instead please add some more information for example about your operating system.
View ArticleComment by Federico klez Culloca on The image is base64 encoded but cannot be...
"they are delivered abnormally" what do you mean? Are you seeing the wrong image? No image? The email doesn't get delivered at all? Please describe what exact problem you're encountering.
View ArticleComment by Federico klez Culloca on Java - How to write a json format string...
So just without the escaping (which should already work by simply writing the string to a file) or prettified?
View ArticleComment by Federico klez Culloca on 8.10 LAB: Thesaurus - Output is not...
synonyms[index][i - 1] = words[i]; consider what values i can be and where in words"civilized" is.
View ArticleComment by Federico klez Culloca on Different base64 encoding validation in...
@gstackoverflow I'd say go with John Skeet's answer instead.
View ArticleComment by Federico klez Culloca on How to replace repeated letters from a...
Hello and welcome. Please read How do I ask and answer homework questions?
View ArticleComment by Federico klez Culloca on what could be the logic behind generating...
1) I'm assuming by "vectors" you mean "arrays"; 2) What coding problem? That title is a bit too vague to devise a solution for a problem; 3) The question is too broad anyway. Please read How do I ask...
View ArticleComment by Federico klez Culloca on How to Generate a User-Defined Word...
1) I'm assuming by "vectors" you mean "arrays"; 2) What coding problem? That title is a bit too vague to devise a solution for a problem; 3) The question is too broad anyway. Please read How do I ask...
View ArticleComment by Federico klez Culloca on I got the error...
Looks like that date isn't formatted according to the default pattern. Try and pass the correct pattern to the SimpleDateFormat constructor.
View ArticleComment by Federico klez Culloca on How can common resusable code be written?
Are you sure Trade, Contact and Email don't implement a common interface? If not ask the vendor to make it so or find a better vendor.
View ArticleComment by Federico klez Culloca on How can common resusable code be written?
"inheritance is so dangerous and must be used carefully" that's a tad overblown. True, inheritance can cause complexity and composition should be preferred, but calling it "dangerous" is a bit of an...
View Article