How many hours a day do you put in?I've been programming like a madman lately... this is the only thing I've really enjoyed doing for the long-term.
How many hours a day do you put in?I've been programming like a madman lately... this is the only thing I've really enjoyed doing for the long-term.
How many hours a day do you put in?
Trying to get to grips with the Reactjs library, been trying to implement it into mvc structured project I'm working on. The whole thing has me.
I'll get it soon enough though
Is C# a good language to learn for basic 2D mobile gaming? I've got 95% of the artwork for my game done, I just need to learn to program now.
YesAre you going to be making your game using Unity?
I believe thats why one would use dynamic programming. That shyt is really hard for me to get down thoThat exponential run time
But this is actually a good example of why analyzing algorithms (or at least being familiar with them) is important. In this case, one could ask themselves why is the runtime so awful? If you visualize the recursive calls to the fibonacci function, you can see you're recalculating past values over and over again
I'd bet the interviewer might've been more impressed with this (pseudocode isn't really in a specific language):
Code:Dictionary <int, int> fibMemo = new Dictionary<int, int>(); int fibonacci(int n) { if (fibMemo[n] != null) return fibMemo[n]; int result = fibonacci[n - 1] + fibonacci[n - 2]; fibMemo[n] = result; return result; }
By stashing past results for a given n, you don't have to keep constantly recalculating them. The run time drops to O(n), though you might be by making a tradeoff in terms of space
If you're using unity, C# is a great language to learn. If you're programming directly to the phone, for android it's Java, and for iphone, it's objective-C. Since you're using unity, C# it is.Is C# a good language to learn for basic 2D mobile gaming? I've got 95% of the artwork for my game done, I just need to learn to program now.
Well I want the game to start as a facebook game then if it's popular, I would make it available for android and iphone.If you're using unity, C# is a great language to learn. If you're programming directly to the phone, for android it's Java, and for iphone, it's objective-C. Since you're using unity, C# it is.
I have to build a server/client chat program which uses the server to authenticate the clients and then once connected, uses P2P to chat. shyt skessful
lank?That's a great assignment breh. I had to do something similar.
lank?