Skip to content

Swift HTTP session not sending actual Request

So I have some Swift code that send a request to my local host However, on my Flask app there are no get requests coming in and the function isn’t running. There also isn’t anything printing to the console. I am fairly new to swift so I don’t really know how to fix this. Is there any other w…

How do I print the highest value in a class?

Let’s say I have a class for a game I’m making and I need to print the highest value out of five individuals. How would I do that? for example How would I get it to print the highest value for health instead of just printing the individual values? Answer Iterate over each villan and check if it&#8…

Parse boolean expression in python

Currently, I have a Boolean expression which supports & (logical AND), | (logical OR), (, ) (parentheses) operators along with status codes like s, f, d, n, t and job names. The status codes represent the status of a job. (Eg: s = success, f = failure, etc…) and the job name is enclosed within paren…