Search results

  1. Nikhil Shah

    Java function

    In Java, how can I "return" the swapped value of two integers from a function? class Solution{ static List<Integer> get(int a,int b) { a=a+b; b=a-b; a=a+b; //**What will be the return statement?** } } Is it necessary to return an object of some kind, containing...
  2. Nikhil Shah

    Adding many Python files and directories to a single dmg file

    How can I make a single dmg file out of many Python files in different folders? I know that's doable for a single file, but how can I do it for several? I can make a dmg for a 1.py file but not for numerous files in several directories.
  3. Nikhil Shah

    Binary to Decimal in C

    Code for switching paired over completely to decimal involving stack in C. I have utilized the stack to store the aggregate after convertion and jumped out just the top component from a stack that contains the aggregate. If it's not too much trouble, recommend any improvement. Also, Prior to...
  4. Nikhil Shah

    c++ dot

    Hi, to address a point in java we incorporate a class java.awt.Point, I might want to do likewise in c++ for example address a point in c++ I don't have the foggiest idea how to make it happen, is there a library to incorporate or how is it? much thanks to you
  5. Nikhil Shah

    Should I use Python or C++ when making an algorithmic trading bot?

    Please suggest
Back
Top